예제 #1
0
 //TODO: Global Data y Data Rerence tienen que estar en un controlador base
 public PacientesController(IPacientesService service, ISpartan_Bitacora_SQLService bitacoraService)
 {
     this.service     = service;
     serviceBitacora  = bitacoraService;
     baseApi          = ConfigurationManager.AppSettings["DBBaseURL"].ToString();
     ApiControllerUrl = "api/Pacientes";
 }
 public PacientesController(IPacientesService pacientesService)
 {
     _pacientesService = pacientesService;
 }
예제 #3
0
 public HistorialController(IPacientesService pacientesService)
 {
     _pacientesService = pacientesService;
 }