public CuentasController(
     UserManager <IdentityUser> userManager,
     SignInManager <IdentityUser> signInManager,
     IConfiguration configuration,
     ColdonetDBContext context,
     IMapper mapper)
     : base(context, mapper)
 {
     _userManager   = userManager;
     _signInManager = signInManager;
     _configuration = configuration;
     this.context   = context;
 }
 public SubCategoriaController(ColdonetDBContext context, IMapper mapper) : base(context, mapper)
 {
 }
 public TipoComercioController(ColdonetDBContext context, IMapper mapper) : base(context, mapper)
 {
 }
Beispiel #4
0
 public VentaController(ColdonetDBContext context, IMapper mapper) : base(context, mapper)
 {
 }
 public CustomBaseController(ColdonetDBContext context, IMapper mapper)
 {
     this.context = context;
     this.mapper  = mapper;
 }
Beispiel #6
0
 public DeudaClienteController(ColdonetDBContext context, IMapper mapper) : base(context, mapper)
 {
 }
 public SubUsuarioController(ColdonetDBContext context, IMapper mapper) : base(context, mapper)
 {
 }
 public ComerciosController(ColdonetDBContext context, IMapper mapper, IConfiguration configuration) : base(context, mapper)
 {
     this.context   = context;
     this.mapper    = mapper;
     _configuration = configuration;
 }
 public ProductoController(ColdonetDBContext context, IMapper mapper) : base(context, mapper)
 {
 }
Beispiel #10
0
 public DetalleCompraController(ColdonetDBContext context, IMapper mapper) : base(context, mapper)
 {
 }
 public ProveedorController(ColdonetDBContext context, IMapper mapper) : base(context, mapper)
 {
 }
Beispiel #12
0
 public DireccionController(ColdonetDBContext context, IMapper mapper) : base(context, mapper)
 {
 }