source: FarmatikoServices/FarmatikoServiceInterfaces/IPharmacyService.cs@ 5d02859

Last change on this file since 5d02859 was c406ae5, checked in by DimitarSlezenkovski <dslezenkovski@…>, 4 years ago

Update Models, Repos, Services and Controllers

  • Property mode set to 100644
File size: 447 bytes
Line 
1using FarmatikoData.Models;
2using System.Collections.Generic;
3using System.Linq;
4using System.Threading.Tasks;
5
6namespace FarmatikoServices.FarmatikoServiceInterfaces
7{
8 public interface IPharmacyService
9 {
10 void Add(Pharmacy pharmacy);
11 Task<ICollection<Pharmacy>> GetPharmacies();
12 Task<IQueryable<Pharmacy>> GetAll();
13 void Remove(Pharmacy pharmacy);
14 void UpdatePharmacy(Pharmacy pharmacy);
15 }
16}
Note: See TracBrowser for help on using the repository browser.