コード例 #1
0
 public SearchService(TradeUnionCommitteeContext context, HashIdConfiguration hashIdUtilities, AutoMapperConfiguration mapperService, ITrigramSearchRepository searchRepository)
 {
     _context          = context;
     _hashIdUtilities  = hashIdUtilities;
     _mapperService    = mapperService;
     _searchRepository = searchRepository;
 }
コード例 #2
0
 public PdfService(TradeUnionCommitteeContext context, IMapper mapper, IReportPdfBucketService pdfBucketService, IReportGeneratorService reportGeneratorService)
 {
     _context                = context;
     _mapper                 = mapper;
     _pdfBucketService       = pdfBucketService;
     _reportGeneratorService = reportGeneratorService;
 }
コード例 #3
0
 public PdfService(TradeUnionCommitteeContext context, AutoMapperConfiguration mapperService, HashIdConfiguration hashIdUtilities, IReportPdfBucketService pdfBucketService, IReportGeneratorService reportGeneratorService)
 {
     _context                = context;
     _mapperService          = mapperService;
     _hashIdUtilities        = hashIdUtilities;
     _pdfBucketService       = pdfBucketService;
     _reportGeneratorService = reportGeneratorService;
 }
コード例 #4
0
 public DashboardService(TradeUnionCommitteeContext context, IMapper mapper,
                         IForecastingService forecastingService,
                         IDeterminingService determiningService)
 {
     _context            = context;
     _mapper             = mapper;
     _forecastingService = forecastingService;
     _determiningService = determiningService;
 }
コード例 #5
0
 public GiftChildrenService(TradeUnionCommitteeContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
コード例 #6
0
 public HobbyService(TradeUnionCommitteeContext context, AutoMapperConfiguration mapperService, HashIdConfiguration hashIdUtilities)
 {
     _context         = context;
     _mapperService   = mapperService;
     _hashIdUtilities = hashIdUtilities;
 }
コード例 #7
0
 public CulturalFamilyService(TradeUnionCommitteeContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
 public ActivityGrandChildrenService(TradeUnionCommitteeContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
 public FluorographyEmployeesService(TradeUnionCommitteeContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
コード例 #10
0
 public PrivilegesService(TradeUnionCommitteeContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
 public ApartmentAccountingEmployeesService(TradeUnionCommitteeContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
 public ApartmentAccountingEmployeesService(TradeUnionCommitteeContext context, AutoMapperConfiguration mapperService, HashIdConfiguration hashIdUtilities)
 {
     _context         = context;
     _mapperService   = mapperService;
     _hashIdUtilities = hashIdUtilities;
 }
コード例 #13
0
 public ActivityGrandChildrenService(TradeUnionCommitteeContext context, AutoMapperConfiguration mapperService, HashIdConfiguration hashIdUtilities)
 {
     _context         = context;
     _mapperService   = mapperService;
     _hashIdUtilities = hashIdUtilities;
 }
コード例 #14
0
 public DepartmentalService(TradeUnionCommitteeContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
コード例 #15
0
 public DashboardService(TradeUnionCommitteeContext context, IMapper mapper, ITestService testService)
 {
     _context     = context;
     _mapper      = mapper;
     _testService = testService;
 }
コード例 #16
0
 public SubdivisionsService(TradeUnionCommitteeContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
コード例 #17
0
 public TrigramSearchRepository(TradeUnionCommitteeContext db)
 {
     _dbContext = db;
 }
コード例 #18
0
 public QualificationService(TradeUnionCommitteeContext context)
 {
     _context = context;
 }
コード例 #19
0
 public TravelService(TradeUnionCommitteeContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
コード例 #20
0
 public SocialActivityEmployeesService(TradeUnionCommitteeContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
 public FluorographyEmployeesService(TradeUnionCommitteeContext context, AutoMapperConfiguration mapperService, HashIdConfiguration hashIdUtilities)
 {
     _context         = context;
     _mapperService   = mapperService;
     _hashIdUtilities = hashIdUtilities;
 }
コード例 #22
0
 public ReferenceParent(TradeUnionCommitteeContext context, HashIdConfiguration hashIdUtilities)
 {
     _context         = context;
     _hashIdUtilities = hashIdUtilities;
 }
コード例 #23
0
 public PrivateHouseEmployeesService(TradeUnionCommitteeContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
 public ActivityFamilyService(TradeUnionCommitteeContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
コード例 #25
0
 public DormitoryService(TradeUnionCommitteeContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
 public DashboardService(TradeUnionCommitteeContext context, AutoMapperConfiguration mapperService)
 {
     _context       = context;
     _mapperService = mapperService;
 }
コード例 #27
0
 public WellnessFamilyService(TradeUnionCommitteeContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
コード例 #28
0
 public MaterialAidEmployeesService(TradeUnionCommitteeContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
コード例 #29
0
 public EmployeeService(TradeUnionCommitteeContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
コード例 #30
0
 public SearchService(TradeUnionCommitteeContext context, IMapper mapper, ITrigramSearchRepository searchRepository)
 {
     _context          = context;
     _mapper           = mapper;
     _searchRepository = searchRepository;
 }