コード例 #1
0
 public CadastrosConfiguracoesController(IPessoaService pessoaService,
                                         IEmpresaService empresaService,
                                         IUsuarioService usuarioService,
                                         ICentroCustoService centroCustoService,
                                         IPlanoContaService planoContaService,
                                         IContaService contaService)
 {
     _pessoaService      = pessoaService;
     _empresaService     = empresaService;
     _usuarioService     = usuarioService;
     _centroCustoService = centroCustoService;
     _planoContaService  = planoContaService;
     _contaService       = contaService;
 }
コード例 #2
0
 public MovimentacoesController(IPagarService pagarService,
                                IReceberService receberService,
                                IEmpresaService empresaService,
                                IContaService contaService,
                                IPessoaService pessoaService,
                                IPlanoContaService planoContaService,
                                ICentroCustoService centroCustoService,
                                ITransferenciaService transferenciaService)
 {
     _pagarService         = pagarService;
     _receberService       = receberService;
     _empresaService       = empresaService;
     _contaService         = contaService;
     _pessoaService        = pessoaService;
     _planoContaService    = planoContaService;
     _centroCustoService   = centroCustoService;
     _transferenciaService = transferenciaService;
 }
コード例 #3
0
 public RelatoriosController(IPessoaService pessoaService,
                             IEmpresaService empresaService,
                             IUsuarioService usuarioService,
                             ICentroCustoService centroCustoService,
                             IPlanoContaService PlanoContaService,
                             IContaService contaService,
                             ICaixaRepository caixaRepository,
                             IReceberRepository receberRepository,
                             IPagarRepository pagarRepository
                             )
 {
     _pessoaService      = pessoaService;
     _empresaService     = empresaService;
     _usuarioService     = usuarioService;
     _centroCustoService = centroCustoService;
     _PlanoContaService  = PlanoContaService;
     _contaService       = contaService;
     _caixaRepository    = caixaRepository;
     _receberRepository  = receberRepository;
     _pagarRepository    = pagarRepository;
 }
 public CadastroConfiguracaoCentroCustoLista(ICentroCustoService centroCustoService)
 {
     _centroCustoService = centroCustoService;
 }
コード例 #5
0
 public CentroCustoAppService(ICentroCustoService baseService) : base(baseService)
 {
     _baseService = baseService;
 }
コード例 #6
0
 public CentroCustoAppService(ICentroCustoService service)
     : base(service)
 {
     _service = service;
 }
コード例 #7
0
 public CentroCustoController(
     ICentroCustoService centroCustoService)
 {
     _centroCustoService = centroCustoService;
 }
コード例 #8
0
 private void frmDespesaCadastro_Load(object sender, EventArgs e)
 {
     despesa   = new Despesa();
     ccService = new CentroCustoService();
     CarregaCboCcusto();
 }
コード例 #9
0
 public CentroCustoAppService(IMapper mapper, IUnitOfWork uow, ICentroCustoService centroCustoService) : base(mapper, uow)
 {
     this._centroCustoService = centroCustoService;
 }