Пример #1
0
 public VendaAppService(IUnitOfWork uow, IVendaService service, IDiscoVendaAppService discoVendaAppService, IDiscoAppService discoAppService, ICashBackAppService cashBackAppService, IMapper mapper) : base(uow, service, mapper)
 {
     _service = service;
     _discoVendaAppService = discoVendaAppService;
     _discoAppService      = discoAppService;
     _cashBackAppService   = cashBackAppService;
 }
 public DiscoVendaController(IDiscoVendaAppService discoVendaAppService, IVendaAppService vendaAppService, IDiscoAppService discoAppService, ICashBackAppService cashBackAppService, IMapper mapper)
 {
     _vendaAppService      = vendaAppService;
     _discoVendaAppService = discoVendaAppService;
     _mapper             = mapper;
     _discoAppService    = discoAppService;
     _cashBackAppService = cashBackAppService;
 }
Пример #3
0
 public VendaController(IVendaAppService vendaAppService, IDiscoVendaAppService discoVendaAppService, IMapper mapper)
 {
     _vendaAppService      = vendaAppService;
     _discoVendaAppService = discoVendaAppService;
     _mapper = mapper;
 }