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;
 }