source:
FarmatikoServices/FarmatikoServiceInterfaces/IAdminService.cs@
7520f88
Last change on this file since 7520f88 was d23bf72, checked in by , 4 years ago | |
---|---|
|
|
File size: 420 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 FarmatikoServices.FarmatikoServiceInterfaces |
9 | { |
10 | public interface IAdminService |
11 | { |
12 | Task<IEnumerable<PharmacyHead>> GetPharmacyHeads(); |
13 | Task<IEnumerable<RequestPharmacyHead>> GetClaimingRequests(); |
14 | bool RejectRequest(int Id); |
15 | } |
16 | } |
Note:
See TracBrowser
for help on using the repository browser.