public HealthDosierController( ApplicationDbContext db, IDiseasesService diseasesService, IAllergiesService allergiesService, IHealthParametersService healthParametersService, ISymptomsServices symptomsServices, IHealthDosiersService healthDosiersService, IWorkOutsService workOutsService, IFoodRegimensService foodRegimensService) { this.db = db; this.SystemsForTests = this.db.BodySystems.Select(b => b.Name).ToList(); this.diseasesService = diseasesService; this.allergiesService = allergiesService; this.healthParametersService = healthParametersService; this.symptomsServices = symptomsServices; this.healthDosiersService = healthDosiersService; this.workOutsService = workOutsService; this.foodRegimensService = foodRegimensService; }
public PersonAllergiesService(HealthDbContext db, IAllergiesService allergiesService) { this.db = db; this.allergiesService = allergiesService; }
public AllergicsController(IAllergiesService allergiesService) { _allergiesService = allergiesService; }
public AllergiesController(ApplicationDbContext db, IAllergiesService allergiesService) { this.db = db; this.allergiesService = allergiesService; }
public AllergiesController(IAllergiesService allergiesService) { this.allergiesService = allergiesService; }