source: FarmatikoData/FarmatikoRepoInterfaces/IPharmacyHeadRepository.cs@ e42f61a

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

Add classes & interfaces for Repo

  • Property mode set to 100644
File size: 489 bytes
RevLine 
[de2baac]1using FarmatikoData.Models;
2using System;
3using System.Collections.Generic;
4using System.Text;
5
6namespace FarmatikoData.FarmatikoRepoInterfaces
7{
8 public interface IPharmacyHeadRepository
9 {
10 void Add(PharmacyHead pharmacyHead);
11 void Remove(PharmacyHead pharmacyHead, string Name);
12 ICollection<PharmacyHead> GetAllPharmacies(string NameOfPharmacyHead);
13 //Not actually needed
14 IEnumerable<PharmacyHead> GetPharmacyByName(string Name);
15 }
16}
Note: See TracBrowser for help on using the repository browser.