Last change
on this file since 472dd7e was f554983, checked in by Dimitar Slezenkovski <dslezenkovski@…>, 2 years ago |
Add cron job for updating data, with Quartz.NET
|
-
Property mode
set to
100644
|
File size:
422 bytes
|
Rev | Line | |
---|
[f554983] | 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.