Example #1
0
 public OrcamentoController(
     IOrcamentoAppService orcamentoAppService,
     MessageQueue messageQueue)
     : base(messageQueue)
 {
     this.orcamentoAppService = orcamentoAppService;
 }
Example #2
0
 public RelOrcamentoController(IOrcamentoAppService orcamentoAppService,
                               IEmpresaAppService empresaAppService,
                               IIndiceFinanceiroAppService indiceFinanceiroAppService,
                               MessageQueue messageQueue)
     : base(messageQueue)
 {
     this.empresaAppService          = empresaAppService;
     this.orcamentoAppService        = orcamentoAppService;
     this.indiceFinanceiroAppService = indiceFinanceiroAppService;
 }
        public OrcamentoController(IOrcamentoAppService orcamentoApp, ICategoriaAppService categoriaApp,
                                   IServicoAppService servicoApp, IPrestadorAppService prestadorApp, ICidadeAppService cidadeApp,
                                   ILogAppService logAppService)
        {
            _orcamentoApp  = orcamentoApp;
            _categoriaApp  = categoriaApp;
            _servicoApp    = servicoApp;
            _prestadorApp  = prestadorApp;
            _cidadeApp     = cidadeApp;
            _logAppService = logAppService;

            _utils = new Utils();
        }
        public OrcamentoController(IOrcamentoAppService orcamentoApp, ICategoriaAppService categoriaApp,
        IServicoAppService servicoApp, IPrestadorAppService prestadorApp, ICidadeAppService cidadeApp,
        ILogAppService logAppService)
        {
            _orcamentoApp = orcamentoApp;
              _categoriaApp = categoriaApp;
              _servicoApp = servicoApp;
              _prestadorApp = prestadorApp;
              _cidadeApp = cidadeApp;
              _logAppService = logAppService;

              _utils = new Utils();
        }
Example #5
0
 public PrestadorController(IPrestadorAppService prestadorApp, IOrcamentoAppService orcamentoApp,
                            IUsuarioAppService usuarioApp, IServicoPrestadorAppService servicoPrestadorApp, ILogAppService logApp, IServicoAppService servicoApp,
                            ICategoriaAppService categoriaApp, ApplicationUserManager userManager, ApplicationSignInManager signInManager)
 {
     _prestadorApp        = prestadorApp;
     _orcamentoApp        = orcamentoApp;
     _userManager         = userManager;
     _signInManager       = signInManager;
     _usuarioApp          = usuarioApp;
     _servicoPrestadorApp = servicoPrestadorApp;
     _logAppService       = logApp;
     _servicoAppService   = servicoApp;
     _categoriaApp        = categoriaApp;
     _utils = new Utils();
 }
 public PrestadorController(IPrestadorAppService prestadorApp, IOrcamentoAppService orcamentoApp,
     IUsuarioAppService usuarioApp, IServicoPrestadorAppService servicoPrestadorApp, ILogAppService logApp, IServicoAppService servicoApp,
     ICategoriaAppService categoriaApp, ApplicationUserManager userManager, ApplicationSignInManager signInManager)
 {
     _prestadorApp = prestadorApp;
     _orcamentoApp = orcamentoApp;
     _userManager = userManager;
     _signInManager = signInManager;
     _usuarioApp = usuarioApp;
     _servicoPrestadorApp = servicoPrestadorApp;
     _logAppService = logApp;
     _servicoAppService = servicoApp;
     _categoriaApp = categoriaApp;
     _utils = new Utils();
 }
Example #7
0
 public OrcamentoController(IOrcamentoAppService orcamentoAppService)
     : base()
 {
     this._orcamentoAppService = orcamentoAppService;
 }