source: FarmatikoData/FarmatikoRepoInterfaces/IPandemicRepository.cs@ 58fa654

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

Update & add service

  • Property mode set to 100644
File size: 272 bytes
RevLine 
[de2baac]1using FarmatikoData.Models;
[a55ef91]2using System.Linq;
[de2baac]3
4namespace FarmatikoData.FarmatikoRepoInterfaces
5{
6 public interface IPandemicRepository
7 {
[a55ef91]8 IQueryable<Pandemic> GetAll();
[de2baac]9 void Add(Pandemic pandemic);
10 void Remove(Pandemic pandemic);
11 }
12}
Note: See TracBrowser for help on using the repository browser.