- Timestamp:
- 08/07/20 11:01:25 (4 years ago)
- Branches:
- master
- Children:
- 5d02859
- Parents:
- ee137aa (diff), c406ae5 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Location:
- Farmatiko
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
Farmatiko/Controllers/HealthFacilitiesController.cs
ree137aa r63d885e 26 26 } 27 27 [HttpGet] 28 public IQueryable<HealthFacilities> Get()28 public Task<IQueryable<HealthFacilities>> Get() 29 29 { 30 30 return _healthFacilitiesService.GetAll(); -
Farmatiko/Controllers/HealthcareWorkerController.cs
ree137aa r63d885e 1 1 using System.Linq; 2 using System.Threading.Tasks; 2 3 using FarmatikoData.Models; 3 4 using FarmatikoServices.FarmatikoServiceInterfaces; … … 17 18 18 19 [HttpGet] 19 public IQueryable<HealthcareWorkers> Get()20 public Task<IQueryable<HealthcareWorkers>> Get() 20 21 { 21 22 return _healthcareWorkerService.GetAll(); -
Farmatiko/Controllers/MedicineController.cs
ree137aa r63d885e 1 1 using System.Linq; 2 using System.Threading.Tasks; 2 3 using FarmatikoData.Models; 3 4 using FarmatikoServices.FarmatikoServiceInterfaces; … … 16 17 } 17 18 [HttpGet] 18 public IQueryable<Medicine> Get()19 public Task<IQueryable<Medicine>> Get() 19 20 { 20 21 return _medicineService.GetAll(); -
Farmatiko/Controllers/MedicineListController.cs
ree137aa r63d885e 1 1 using System.Collections.Generic; 2 2 using System.Linq; 3 using System.Threading.Tasks; 3 4 using FarmatikoData.Models; 4 5 using FarmatikoServices.FarmatikoServiceInterfaces; … … 17 18 } 18 19 [HttpGet] 19 public IQueryable<MedicineList> Get()20 public Task<IQueryable<MedicineList>> Get() 20 21 { 21 22 return _medicineListService.GetAll(); 22 23 } 23 24 [HttpGet] 24 public ICollection<MedicineList> GetByName(string Name)25 public Task<ICollection<MedicineList>> GetByName(string Name) 25 26 { 26 27 return _medicineListService.GetByName(Name); 27 28 } 28 29 [HttpGet] 29 public ICollection<MedicineList> GetByManufacturer(string Manufacturer)30 public Task<ICollection<MedicineList>> GetByManufacturer(string Manufacturer) 30 31 { 31 32 return _medicineListService.GetByManufacturer(Manufacturer); -
Farmatiko/Controllers/PandemicController.cs
ree137aa r63d885e 1 1 using System.Linq; 2 using System.Threading.Tasks; 2 3 using FarmatikoData.Models; 3 4 using FarmatikoServices.FarmatikoServiceInterfaces; … … 16 17 } 17 18 [HttpGet] 18 public IQueryable<Pandemic> Get()19 public Task<IQueryable<Pandemic>> Get() 19 20 { 20 21 return _pandemicService.GetAll(); -
Farmatiko/Controllers/PharmacyController.cs
ree137aa r63d885e 1 1 using System.Collections.Generic; 2 2 using System.Linq; 3 using System.Threading.Tasks; 3 4 using FarmatikoData.Models; 4 5 using FarmatikoServices.FarmatikoServiceInterfaces; … … 17 18 } 18 19 [HttpGet] 19 public IQueryable<Pharmacy> Get()20 public Task<IQueryable<Pharmacy>> Get() 20 21 { 21 22 return _pharmacyService.GetAll(); 22 23 } 23 24 [HttpGet] 24 public ICollection<Pharmacy> GetPharmacies()25 public Task<ICollection<Pharmacy>> GetPharmacies() 25 26 { 26 27 return _pharmacyService.GetPharmacies(); 27 28 } 28 29 [HttpPost] 29 public void UpdatePharmacy(Pharmacy pharmacy , string Name)30 public void UpdatePharmacy(Pharmacy pharmacy) 30 31 { 31 _pharmacyService.UpdatePharmacy(pharmacy ,Name);32 _pharmacyService.UpdatePharmacy(pharmacy); 32 33 } 33 34 [HttpPost] -
Farmatiko/Controllers/PharmacyHeadController.cs
ree137aa r63d885e 36 36 } 37 37 [HttpPost] 38 public void Remove(PharmacyHead pharmacyHead , string Name)38 public void Remove(PharmacyHead pharmacyHead) 39 39 { 40 _pharmacyHeadRepository.Remove(pharmacyHead , Name);40 _pharmacyHeadRepository.Remove(pharmacyHead); 41 41 } 42 42 } -
Farmatiko/Startup.cs
ree137aa r63d885e 12 12 using FarmatikoServices.FarmatikoServiceInterfaces; 13 13 using FarmatikoServices.Services; 14 using Microsoft.Extensions.Logging; 14 15 15 16 namespace Farmatiko … … 69 70 70 71 services.AddTransient<IProcessJSONService, ProcessJSONService>(); 72 73 services.AddTransient<ILogger, Logger<ProcessJSONService>>(); 71 74 } 72 75
Note:
See TracChangeset
for help on using the changeset viewer.