source: FarmatikoServices/FarmatikoServiceInterfaces/IPharmacyService.cs@ 4e72684

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

Add services

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