source: FarmatikoData/FarmatikoRepoInterfaces/IPandemicRepository.cs@ 4b342bb

Last change on this file since 4b342bb was de2baac, checked in by DimitarSlezenkovski <dslezenkovski@…>, 4 years ago

Add classes & interfaces for Repo

  • Property mode set to 100644
File size: 321 bytes
Line 
1using FarmatikoData.Models;
2using System;
3using System.Collections.Generic;
4using System.Text;
5
6namespace FarmatikoData.FarmatikoRepoInterfaces
7{
8 public interface IPandemicRepository
9 {
10 IEnumerable<Pandemic> GetAll();
11 void Add(Pandemic pandemic);
12 void Remove(Pandemic pandemic);
13 }
14}
Note: See TracBrowser for help on using the repository browser.