Last change
on this file since 7d80751 was db484c9, checked in by DimitarSlezenkovski <dslezenkovski@…>, 4 years ago |
Fix bugs
|
-
Property mode
set to
100644
|
File size:
777 bytes
|
Line | |
---|
1 | using FarmatikoData.DTOs;
|
---|
2 | using FarmatikoData.Models;
|
---|
3 | using System;
|
---|
4 | using System.Collections.Generic;
|
---|
5 | using System.Linq;
|
---|
6 | using System.Text;
|
---|
7 | using System.Threading.Tasks;
|
---|
8 |
|
---|
9 | namespace FarmatikoServices.FarmatikoServiceInterfaces
|
---|
10 | {
|
---|
11 | public interface IPHService
|
---|
12 | {
|
---|
13 | Task<IEnumerable<PharmacyHead>> GetPharmacyHeadInfo();
|
---|
14 | Task UpdatePharmacyHead(PharmacyHeadDto pharmacyHead);
|
---|
15 | Task<int> Login(PharmacyHead pharmacyHead);
|
---|
16 | Task<bool> ClaimPharmacy(RequestPharmacyHead pharmacy);
|
---|
17 | Task<PharmacyHead> GetPharmacyHeadByIdAsync(int id);
|
---|
18 | Task<bool> Add(PharmacyHeadDto pharmacyHead);
|
---|
19 | Task<bool> Remove(int id);
|
---|
20 | Task<bool> RemoveClaimingRequest(int id);
|
---|
21 | PharmacyHeadDto GetPharmacyHead(string userName);
|
---|
22 | }
|
---|
23 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.