public TemplateMapper(IUnitOfWork uow)
 {
     this.uow                    = uow;
     weldJointService            = new WeldJointService(uow);
     materialService             = new MaterialService(uow);
     industrialObjectService     = new IndustrialObjectService(uow);
     customerService             = new CustomerService(uow);
     controlMethodsLibService    = new ControlMethodsLibService(uow);
     contractService             = new ContractService(uow);
     scheduleOrganizationService = new ScheduleOrganizationService(uow);
 }
Exemplo n.º 2
0
 public ComponentMapper(IUnitOfWork uow)
 {
     this.uow                = uow;
     templateService         = new TemplateService(uow);
     industrialObjectService = new IndustrialObjectService(uow);
 }