Last change
on this file since dae4cde was e0cdea2, checked in by Dimitar Slezenkovski <dslezenkovski@…>, 4 years ago |
Fix all bugs
|
-
Property mode
set to
100644
|
File size:
431 bytes
|
Rev | Line | |
---|
[1454207] | 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 | {
|
---|
[6f203af] | 12 | Task<IEnumerable<RequestPharmacyHead>> GetClaimingRequests();
|
---|
| 13 | Task<IEnumerable<PharmacyHead>> GetPharmacyHeads();
|
---|
[e0cdea2] | 14 | void RemoveClaimRequest(RequestPharmacyHead Id);
|
---|
[1454207] | 15 | }
|
---|
| 16 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.