source: FarmatikoServices/FarmatikoServiceInterfaces/IPharmacyService.cs@ a6bbad1

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

Update & add service

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