Last change
on this file since 63d885e was c406ae5, checked in by DimitarSlezenkovski <dslezenkovski@…>, 3 years ago |
Update Models, Repos, Services and Controllers
|
-
Property mode
set to
100644
|
File size:
402 bytes
|
Rev | Line | |
---|
[de2baac] | 1 | using FarmatikoData.Models;
|
---|
| 2 | using System.Collections.Generic;
|
---|
[a55ef91] | 3 | using System.Linq;
|
---|
[de2baac] | 4 |
|
---|
| 5 | namespace FarmatikoData.FarmatikoRepoInterfaces
|
---|
| 6 | {
|
---|
| 7 | public interface IPharmacyRepository
|
---|
| 8 | {
|
---|
| 9 | void Add(Pharmacy pharmacy);
|
---|
| 10 | ICollection<Pharmacy> GetPharmacies();
|
---|
[a55ef91] | 11 | IQueryable<Pharmacy> GetAll();
|
---|
[de2baac] | 12 | void Remove(Pharmacy pharmacy);
|
---|
[c406ae5] | 13 | void UpdatePharmacy(Pharmacy pharmacy);
|
---|
[de2baac] | 14 |
|
---|
| 15 | }
|
---|
| 16 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.