source: FarmatikoData/FarmatikoRepoInterfaces/IPharmacyRepository.cs@ de2baac

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

Add classes & interfaces for Repo

  • Property mode set to 100644
File size: 390 bytes
Line 
1using FarmatikoData.Models;
2using System;
3using System.Collections.Generic;
4using System.Text;
5
6namespace FarmatikoData.FarmatikoRepoInterfaces
7{
8 public interface IPharmacyRepository
9 {
10 void Add(Pharmacy pharmacy);
11 ICollection<Pharmacy> GetPharmacies();
12 void Remove(Pharmacy pharmacy);
13 void UpdatePharmacy(Pharmacy pharmacy, string Name);
14
15 }
16}
Note: See TracBrowser for help on using the repository browser.