Last change
on this file since f554983 was f554983, checked in by Dimitar Slezenkovski <dslezenkovski@…>, 4 years ago |
Add cron job for updating data, with Quartz.NET
|
-
Property mode
set to
100644
|
File size:
422 bytes
|
Line | |
---|
1 | using FarmatikoData.Models;
|
---|
2 | using System.Threading.Tasks;
|
---|
3 |
|
---|
4 | namespace FarmatikoData.FarmatikoRepoInterfaces
|
---|
5 | {
|
---|
6 | public interface IUpdateDataRepo
|
---|
7 | {
|
---|
8 | Task AddFacility(HealthFacility healthFacility);
|
---|
9 | Task AddMedicines(Medicine medicine);
|
---|
10 | Task AddPharmacy(Pharmacy pharmacy);
|
---|
11 | Task AddWorker(HealthcareWorker Worker);
|
---|
12 | HealthFacility GetFacilityJSON(string healthFacility);
|
---|
13 | }
|
---|
14 | } |
---|
Note:
See
TracBrowser
for help on using the repository browser.