source: FarmatikoData/FarmatikoRepoInterfaces/IPandemicRepository.cs@ 63d885e

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

Update & add service

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