source: FarmatikoServices/FarmatikoServiceInterfaces/IPharmacyHeadService.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: 588 bytes
Line 
1using FarmatikoData.Models;
2using System;
3using System.Collections.Generic;
4using System.Linq;
5using System.Text;
6
7namespace FarmatikoServices.FarmatikoServiceInterfaces
8{
9 public interface IPharmacyHeadService
10 {
11 void Add(PharmacyHead pharmacyHead);
12 void Remove(PharmacyHead pharmacyHead, string Name);
13 IQueryable<PharmacyHead> GetAllPharmacies(string NameOfPharmacyHead);
14 //Not actually needed
15 IQueryable<PharmacyHead> GetPharmacyByName(string Name);
16 IQueryable<MedicineList> GetPharmacyMedicines(string NameOfPharmacy);
17 }
18}
Note: See TracBrowser for help on using the repository browser.