Last change
on this file since 5d02859 was c406ae5, checked in by DimitarSlezenkovski <dslezenkovski@…>, 5 years ago |
Update Models, Repos, Services and Controllers
|
-
Property mode
set to
100644
|
File size:
536 bytes
|
Rev | Line | |
---|
[a55ef91] | 1 | using FarmatikoData.Models;
|
---|
| 2 | using System;
|
---|
| 3 | using System.Collections.Generic;
|
---|
| 4 | using System.Text;
|
---|
[c406ae5] | 5 | using System.Threading.Tasks;
|
---|
[a55ef91] | 6 |
|
---|
| 7 | namespace FarmatikoServices.FarmatikoServiceInterfaces
|
---|
| 8 | {
|
---|
| 9 | public interface IProcessJSONService
|
---|
| 10 | {
|
---|
[c406ae5] | 11 | Task<HashSet<HealthFacilities>> GetProcessedHealthFacilitiesFromJSON();
|
---|
| 12 | Task<HashSet<Pandemic>> GetProcessedPandemicsFromJSONApi();
|
---|
| 13 | Task<HashSet<HealthcareWorkers>> GetProcessedHealthcareWorkersFromJSON();
|
---|
| 14 | Task<HashSet<Medicine>> GetProcessedMedicinesFromJSON();
|
---|
[a55ef91] | 15 | }
|
---|
| 16 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.