Ejemplo n.º 1
0
 public CorrosionStudyService(IUnitOfWork unitOfWork, IMapper mapper, PipingContext context)
 {
     _unitOfWork = unitOfWork;
     _mapper     = mapper;
     _context    = context;
 }
Ejemplo n.º 2
0
 public PlantService(IUnitOfWork unitOfWork, IMapper mapper, PipingContext context)
 {
     _unitOfWork = unitOfWork;
     _mapper     = mapper;
     _context    = context;
 }
 public MaterialMasterService(IUnitOfWork unitOfWork, IMapper mapper, PipingContext context)
 {
     _unitOfWork = unitOfWork;
     _mapper     = mapper;
     _context    = context;
 }
Ejemplo n.º 4
0
 public RiskAnalysisService(IUnitOfWork unitOfWork, IMapper mapper, PipingContext context)
 {
     _unitOfWork = unitOfWork;
     _mapper     = mapper;
     _context    = context;
 }
Ejemplo n.º 5
0
 public StructuralMinThkService(IUnitOfWork unitOfWork, IMapper mapper, PipingContext context)
 {
     _unitOfWork = unitOfWork;
     _mapper     = mapper;
     _context    = context;
 }
Ejemplo n.º 6
0
 public UnitOfWork(PipingContext context)
 {
     _context = context;
 }
 public InsulationTypeService(IUnitOfWork unitOfWork, IMapper mapper, PipingContext context)
 {
     _unitOfWork = unitOfWork;
     _mapper     = mapper;
     _context    = context;
 }
Ejemplo n.º 8
0
 public InspectionStrategyService(IUnitOfWork unitOfWork, IMapper mapper, PipingContext context)
 {
     _unitOfWork = unitOfWork;
     _mapper     = mapper;
     _context    = context;
 }
 public GenericRepository(PipingContext context)
 {
     this._dbContext = context;
     this.DbSet      = context.Set <T>();
 }