Exemple #1
0
 public HomeController(IUsuarioAppService usuarioAppService,
     IFuncionarioAppService funcionarioAppService,
     IPagamentoAppService pagamentoAppService)
 {
     _usuarioAppService = usuarioAppService;
     _funcionarioAppService = funcionarioAppService;
     _pagamentoAppService = pagamentoAppService;
 }
Exemple #2
0
 public PagamentoController(IPagamentoAppService pagamentoAppService, INotificador notificador, IDistributedCache cache) : base(notificador, cache)
 {
     _pagamentoAppService = pagamentoAppService;
 }
 public PagamentoController(IPedidoAppService pedidoAppService, IPagamentoAppService pagamentoAppService)
 {
     _pedidoAppService    = pedidoAppService;
     _pagamentoAppService = pagamentoAppService;
 }
 public PagamentoController(IPagamentoAppService app)
 {
     _app = app;
 }
 public PagamentoController(IPagamentoAppService pagamentoAppService)
 {
     _pagamentoAppService = pagamentoAppService;
 }