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