public PersonasController(ApplicationSoftwareDbContext context)
 {
     this.context = context;
 }
 public CamarasController(ApplicationSoftwareDbContext context, IMapper mapper)
 {
     this.context = context;
     this.mapper  = mapper;
 }
Ejemplo n.º 3
0
 public ListaNegraController(ApplicationSoftwareDbContext context, IMapper mapper)
 {
     this.context = context;
     this.mapper  = mapper;
 }
 public PlacasListaNegraController(ApplicationSoftwareDbContext context)
 {
     this.context = context;
 }