Last change
on this file since 5d02859 was a55ef91, checked in by DimitarSlezenkovski <dslezenkovski@…>, 4 years ago |
Update & add service
|
-
Property mode
set to
100644
|
File size:
272 bytes
|
Line | |
---|
1 | using FarmatikoData.Models;
|
---|
2 | using System.Linq;
|
---|
3 |
|
---|
4 | namespace 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.