source: FarmatikoServices/FarmatikoServiceInterfaces/IPharmacyService.cs@ c406ae5

Last change on this file since c406ae5 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
RevLine 
[4e72684]1using FarmatikoData.Models;
2using System.Collections.Generic;
[a55ef91]3using System.Linq;
[c406ae5]4using System.Threading.Tasks;
[4e72684]5
6namespace 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.