source: FarmatikoData/FarmatikoRepoInterfaces/IPharmacyRepository.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: 402 bytes
Line 
1using FarmatikoData.Models;
2using System.Collections.Generic;
3using System.Linq;
4
5namespace FarmatikoData.FarmatikoRepoInterfaces
6{
7 public interface IPharmacyRepository
8 {
9 void Add(Pharmacy pharmacy);
10 ICollection<Pharmacy> GetPharmacies();
11 IQueryable<Pharmacy> GetAll();
12 void Remove(Pharmacy pharmacy);
13 void UpdatePharmacy(Pharmacy pharmacy);
14
15 }
16}
Note: See TracBrowser for help on using the repository browser.