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:
584 bytes
|
Line | |
---|
1 | using FarmatikoData.Models;
|
---|
2 | using System;
|
---|
3 | using System.Collections.Generic;
|
---|
4 | using System.Linq;
|
---|
5 | using System.Text;
|
---|
6 |
|
---|
7 | namespace FarmatikoData.FarmatikoRepoInterfaces
|
---|
8 | {
|
---|
9 | public interface IPharmacyHeadRepository
|
---|
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.