source: FarmatikoServices/FarmatikoServiceInterfaces/IAdminService.cs@ 0a694bb

Last change on this file since 0a694bb was d23bf72, checked in by DimitarSlezenkovski <dslezenkovski@…>, 3 years ago

Add SystemService, Auth, fix a lil bugs :)

  • Property mode set to 100644
File size: 420 bytes
RevLine 
[1454207]1using FarmatikoData.Models;
2using System;
3using System.Collections.Generic;
4using System.Linq;
5using System.Text;
6using System.Threading.Tasks;
7
8namespace FarmatikoServices.FarmatikoServiceInterfaces
9{
10 public interface IAdminService
11 {
[6f203af]12 Task<IEnumerable<PharmacyHead>> GetPharmacyHeads();
13 Task<IEnumerable<RequestPharmacyHead>> GetClaimingRequests();
[d23bf72]14 bool RejectRequest(int Id);
[1454207]15 }
16}
Note: See TracBrowser for help on using the repository browser.