source: FarmatikoServices/FarmatikoServiceInterfaces/IAdminService.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: 435 bytes
Line 
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 {
12 Task<IQueryable<PharmacyHead>> GetPharmacyHeads();
13 Task<IQueryable<RequestPharmacyHead>> GetCalimingRequests();
14 Task RejectRequest(RequestPharmacyHead req);
15 }
16}
Note: See TracBrowser for help on using the repository browser.