source: FarmatikoServices/FarmatikoServiceInterfaces/IPHService.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: 495 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 IPHService
11 {
12 Task<IQueryable<PharmacyHead>> GetPharmacyHeadInfo(string Token);
13 Task UpdatePharmacyHead(PharmacyHead pharmacyHead);
14 Task<int> Login(PharmacyHead pharmacyHead);
15 Task ClaimPharmacy(RequestPharmacyHead pharmacy);
16 }
17}
Note: See TracBrowser for help on using the repository browser.