public HistoriaClinicaController(ILogger <HistoriaClinicaController> logger,
                                  IFundabiemCommonLogic <int, int> fundabiem, IMapper mapper, dbContext context) : base(logger)
 {
     this.fundabiem = fundabiem;
     this.mapper    = mapper;
     this.context   = context;
 }
Beispiel #2
0
 public AnamnesisController(ILogger <AnamnesisController> logger,
                            IFundabiemCommonLogic <int, int> fundabiem, IMapper mapper, dbContext context) : base(logger)
 {
     this.fundabiem = fundabiem;
     this.mapper    = mapper;
     this.context   = context;
 }
 public EvolucionMedicaController(ILogger <EvolucionMedicaController> logger,
                                  IFundabiemCommonLogic <int, int> fundabiem, IMapper mapper, dbContext context) : base(logger)
 {
     this.fundabiem = fundabiem;
     this.mapper    = mapper;
     this.context   = context;
 }
Beispiel #4
0
 public RegistroMedicoController(ILogger <RegistroMedicoController> logger,
                                 IFundabiemCommonLogic <int, int> fundabiem, IMapper mapper, dbContext context) : base(logger)
 {
     this.fundabiem = fundabiem;
     this.mapper    = mapper;
     this.context   = context;
 }
Beispiel #5
0
 public CicloRehabilitacionController(ILogger <CicloRehabilitacionController> logger,
                                      IFundabiemCommonLogic <int, int> fundabiem, IMapper mapper, dbContext context) : base(logger)
 {
     this.fundabiem = fundabiem;
     this.mapper    = mapper;
     this.context   = context;
 }
 public AutorController(ILogger <AutorController> logger,
                        IFundabiemCommonLogic <int, int> fundabiem, dbContext context, IMapper mapper) : base(logger)
 {
     this.fundabiem = fundabiem;
     this.context   = context;
     this.mapper    = mapper;
 }
 public EstudioSocioeconomicoController(
     ILogger <EstudioSocioeconomicoController> logger,
     IFundabiemCommonLogic <int, int> fundabiem,
     IMapper mapper,
     dbContext context
     )
     : base(logger)
 {
     this.fundabiem = fundabiem;
     this.mapper    = mapper;
     this.context   = context;
 }