예제 #1
0
 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)
 {
 }
예제 #4
0
 public VentaController(ColdonetDBContext context, IMapper mapper) : base(context, mapper)
 {
 }
예제 #5
0
 public CustomBaseController(ColdonetDBContext context, IMapper mapper)
 {
     this.context = context;
     this.mapper  = mapper;
 }
예제 #6
0
 public DeudaClienteController(ColdonetDBContext context, IMapper mapper) : base(context, mapper)
 {
 }
예제 #7
0
 public SubUsuarioController(ColdonetDBContext context, IMapper mapper) : base(context, mapper)
 {
 }
예제 #8
0
 public ComerciosController(ColdonetDBContext context, IMapper mapper, IConfiguration configuration) : base(context, mapper)
 {
     this.context   = context;
     this.mapper    = mapper;
     _configuration = configuration;
 }
예제 #9
0
 public ProductoController(ColdonetDBContext context, IMapper mapper) : base(context, mapper)
 {
 }
예제 #10
0
 public DetalleCompraController(ColdonetDBContext context, IMapper mapper) : base(context, mapper)
 {
 }
예제 #11
0
 public ProveedorController(ColdonetDBContext context, IMapper mapper) : base(context, mapper)
 {
 }
예제 #12
0
 public DireccionController(ColdonetDBContext context, IMapper mapper) : base(context, mapper)
 {
 }