Пример #1
0
 public MaterialOrcamentoService(IMaterialOrcamentoRepository materialOrcamentoRepository, MetodosGenericosService metodosGenericosService,
                                 MaterialService materialService)
 {
     this.MaterialOrcamentoRepository = materialOrcamentoRepository;
     this.MetodosGenericosService     = metodosGenericosService;
     this.MaterialService             = materialService;
 }
Пример #2
0
 public ItensOrcamentoService(IItensOrcamentoRepository itensOrcamentoRepository, MetodosGenericosService metodosGenericosService,
                              MaterialService materialService)
 {
     this.ItensOrcamentoRepository = itensOrcamentoRepository;
     this.MetodosGenericosService  = metodosGenericosService;
     this.MaterialService          = materialService;
 }
Пример #3
0
 public CartaCoberturaService(ICartaCoberturaRepository cartaCoberturaRepository, MetodosGenericosService metodosGenericosservice,
                              ItensCartaCoberturaService itensCartaCoberturaService, MaterialService materialService)
 {
     this.CartaCoberturaRepository   = cartaCoberturaRepository;
     this.ItensCartaCoberturaService = itensCartaCoberturaService;
     this.MetodosGenericosService    = metodosGenericosservice;
     this.MaterialService            = materialService;
 }
Пример #4
0
 public ItensOrcamentoIntumescenteService(IItensOrcamentoIntumescenteRepository itensOrcamentoIntumescenteRepository, MetodosGenericosService metodosGenericosService,
                                          ItensOrcamentoService itensOrcamentoService, MaterialService materialService, PerfilService perfilService, CartaCoberturaService cartaCoberturaService)
 {
     this.ItensOrcamentoIntumescenteRepository = itensOrcamentoIntumescenteRepository;
     this.MetodosGenericosService = metodosGenericosService;
     this.ItensOrcamentoService   = itensOrcamentoService;
     this.MaterialService         = materialService;
     this.PerfilService           = perfilService;
     this.CartaCoberturaService   = cartaCoberturaService;
 }
Пример #5
0
 public OrcamentoIntumescenteService(IOrcamentoIntumescenteRepository orcamentoIntumescenteRepository, MetodosGenericosService metodosGenericosService,
                                     PessoaService pessoaService, MaterialService materialService, OrcamentoService orcamentoService, ItensOrcamentoIntumescenteService itensOrcamentoIntumescenteService,
                                     MaoObraOrcamentoService maoObraOrcamentoService, EquipamentoOrcamentoService equipamentoOrcamentoService, MaterialOrcamentoService materialOrcamentoService,
                                     CustoOrcamentoService custoOrcamentoService, TotaisOrcamentoRepository totaisOrcamentoRepository)
 {
     this.OrcamentoIntumescenteRepository = orcamentoIntumescenteRepository;
     this.MetodosGenericosService         = metodosGenericosService;
     this.PessoaService    = pessoaService;
     this.MaterialService  = materialService;
     this.OrcamentoService = orcamentoService;
     this.ItensOrcamentoIntumescenteService = itensOrcamentoIntumescenteService;
     this.MaoObraOrcamentoService           = maoObraOrcamentoService;
     this.EquipamentoOrcamentoService       = equipamentoOrcamentoService;
     this.MaterialOrcamentoService          = materialOrcamentoService;
     this.CustoOrcamentoService             = custoOrcamentoService;
     this.TotaisOrcamentoRepository         = totaisOrcamentoRepository;
 }
Пример #6
0
 public MaterialController(MaterialService materialService)
 {
     this.MaterialService = materialService;
 }