source: FarmatikoData/FarmatikoRepoInterfaces/IAdminRepo.cs@ 1454207

Last change on this file since 1454207 was 1454207, checked in by DimitarSlezenkovski <dslezenkovski@…>, 4 years ago

Change structure, Add repo, services & controllers

  • Property mode set to 100644
File size: 430 bytes
RevLine 
[1454207]1using FarmatikoData.Models;
2using System;
3using System.Collections.Generic;
4using System.Linq;
5using System.Text;
6using System.Threading.Tasks;
7
8namespace FarmatikoData.FarmatikoRepoInterfaces
9{
10 public interface IAdminRepo
11 {
12 Task<IQueryable<RequestPharmacyHead>> GetClaimingRequests();
13 Task<IQueryable<PharmacyHead>> GetPharmacyHeads();
14 Task RemoveClaimRequest(RequestPharmacyHead req);
15 }
16}
Note: See TracBrowser for help on using the repository browser.