Exemple #1
0
 public CorrosionStudyService(IUnitOfWork unitOfWork, IMapper mapper, PipingContext context)
 {
     _unitOfWork = unitOfWork;
     _mapper     = mapper;
     _context    = context;
 }
 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;
 }
Exemple #4
0
 public RiskAnalysisService(IUnitOfWork unitOfWork, IMapper mapper, PipingContext context)
 {
     _unitOfWork = unitOfWork;
     _mapper     = mapper;
     _context    = context;
 }
Exemple #5
0
 public StructuralMinThkService(IUnitOfWork unitOfWork, IMapper mapper, PipingContext context)
 {
     _unitOfWork = unitOfWork;
     _mapper     = mapper;
     _context    = context;
 }
Exemple #6
0
 public UnitOfWork(PipingContext context)
 {
     _context = context;
 }
 public InsulationTypeService(IUnitOfWork unitOfWork, IMapper mapper, PipingContext context)
 {
     _unitOfWork = unitOfWork;
     _mapper     = mapper;
     _context    = context;
 }
Exemple #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>();
 }