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
|
Line | |
---|
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 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.