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:
492 bytes
|
Rev | Line | |
---|
[1454207] | 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 FarmatikoData.FarmatikoRepoInterfaces
|
---|
| 9 | {
|
---|
| 10 | public interface IPHRepo
|
---|
| 11 | {
|
---|
| 12 | Task ClaimPharmacy(RequestPharmacyHead pharmacy);
|
---|
| 13 | Task<PharmacyHead> GetPharmacyHead(PharmacyHead pharmacyHead);
|
---|
| 14 | Task<IQueryable<PharmacyHead>> GetPharmacyHeadInfo();
|
---|
| 15 | Task UpdatePharmacyHead(PharmacyHead pharmacyHead);
|
---|
| 16 | }
|
---|
| 17 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.