public FacturaController(ILoggerManager logger, IFacturaService _facturaService, IMapper mapper, IOptions <AppSettings> appSettings)
 {
     _logger         = logger;
     _FacturaService = _facturaService;
     _mapper         = mapper;
     _appSettings    = appSettings.Value;
 }
 public FacturaController(ILogger <FacturaController> _logger,
                          IFacturaService _facturaService,
                          IMapper _mapper)
 {
     logger         = _logger;
     mapper         = _mapper;
     facturaService = _facturaService;
 }
示例#3
0
 public FacturaController(IFlujoCategoriaService flujoService, ICajaMovimientoMap cajaMovMap, IMovimientoService movService, IPuntoVentaService pvService, IFacturaMap map, IFacturaService service, IUserService userService, IContactoService contactoService)
 {
     this.map             = map;
     this.service         = service;
     this.userService     = userService;
     this.contactoService = contactoService;
     this.pvService       = pvService;
     this.movService      = movService;
     this.cajaMovMap      = cajaMovMap;
     this.flujoService    = flujoService;
 }
示例#4
0
 public FacturaAppService(IFacturaService facturaService)
     : base(facturaService)
 {
     _facturaService = facturaService;
 }
 public HistoricoController(IFacturaService facturaService)
 {
     this.facturaService = facturaService;
 }
示例#6
0
 public FacturaController(IFacturaService facturaService)
 {
     this.facturaService = facturaService;
 }
 public VentaController(IFacturaService facturaOps, IMapper mapper)
 {
     this.facturaOps = facturaOps;
     _mapper         = mapper;
 }
示例#8
0
 public FacturacionService()
 {
     _facturaService = new FacturaService(new FacturaRepository());
 }
示例#9
0
 public FacturaMap(IFacturaService service)
 {
     this.service = service;
 }
示例#10
0
 public FacturaController()
 {
     facturaService = new FacturaService();
 }
示例#11
0
 public FacturaController(DataContext context, IFacturaService facturaService)
 {
     _context        = context;
     _facturaService = facturaService;
 }
示例#12
0
 public DescuentoService(IDescuentoRepository descuentoRepository, IFacturaService facturaService)
 {
     this.descuentoRepository = descuentoRepository;
     this.facturaService      = facturaService;
 }
 public FacturasController(IFacturaService FacturaService)
 {
     _FacturaService = FacturaService;
 }