source:
FarmatikoData/FarmatikoRepoInterfaces/IAdminRepo.cs@
68454c6
Last change on this file since 68454c6 was d23bf72, checked in by , 4 years ago | |
---|---|
|
|
File size: 415 bytes |
Line | |
---|---|
1 | using FarmatikoData.Models; |
2 | using System; |
3 | using System.Collections.Generic; |
4 | using System.Linq; |
5 | using System.Text; |
6 | using System.Threading.Tasks; |
7 | |
8 | namespace FarmatikoData.FarmatikoRepoInterfaces |
9 | { |
10 | public interface IAdminRepo |
11 | { |
12 | Task<IEnumerable<RequestPharmacyHead>> GetClaimingRequests(); |
13 | Task<IEnumerable<PharmacyHead>> GetPharmacyHeads(); |
14 | void RemoveClaimRequest(int Id); |
15 | } |
16 | } |
Note:
See TracBrowser
for help on using the repository browser.