コード例 #1
0
        public EventStatusService(
            ILogger <IEventStatusService> logger,
            MediatR.IMediator mediator,
            IEventStatusRepository eventStatusRepository,
            IApiEventStatusServerRequestModelValidator eventStatusModelValidator,
            IDALEventStatusMapper dalEventStatusMapper,
            IDALEventMapper dalEventMapper)
            : base()
        {
            this.EventStatusRepository     = eventStatusRepository;
            this.EventStatusModelValidator = eventStatusModelValidator;
            this.DalEventStatusMapper      = dalEventStatusMapper;
            this.DalEventMapper            = dalEventMapper;
            this.logger = logger;

            this.mediator = mediator;
        }
コード例 #2
0
ファイル: EventStatusService.cs プロジェクト: Vin2454/samples
 public EventStatusService(
     ILogger <IEventStatusRepository> logger,
     IEventStatusRepository eventStatusRepository,
     IApiEventStatusRequestModelValidator eventStatusModelValidator,
     IBOLEventStatusMapper boleventStatusMapper,
     IDALEventStatusMapper daleventStatusMapper,
     IBOLEventMapper bolEventMapper,
     IDALEventMapper dalEventMapper)
     : base(logger,
            eventStatusRepository,
            eventStatusModelValidator,
            boleventStatusMapper,
            daleventStatusMapper,
            bolEventMapper,
            dalEventMapper)
 {
 }
コード例 #3
0
 public AbstractEventStatusService(
     ILogger logger,
     IEventStatusRepository eventStatusRepository,
     IApiEventStatusRequestModelValidator eventStatusModelValidator,
     IBOLEventStatusMapper bolEventStatusMapper,
     IDALEventStatusMapper dalEventStatusMapper,
     IBOLEventMapper bolEventMapper,
     IDALEventMapper dalEventMapper)
     : base()
 {
     this.EventStatusRepository     = eventStatusRepository;
     this.EventStatusModelValidator = eventStatusModelValidator;
     this.BolEventStatusMapper      = bolEventStatusMapper;
     this.DalEventStatusMapper      = dalEventStatusMapper;
     this.BolEventMapper            = bolEventMapper;
     this.DalEventMapper            = dalEventMapper;
     this.logger = logger;
 }
コード例 #4
0
 public AbstractTenantService(
     ILogger logger,
     ITenantRepository tenantRepository,
     IApiTenantRequestModelValidator tenantModelValidator,
     IBOLTenantMapper bolTenantMapper,
     IDALTenantMapper dalTenantMapper,
     IBOLAdminMapper bolAdminMapper,
     IDALAdminMapper dalAdminMapper,
     IBOLEventMapper bolEventMapper,
     IDALEventMapper dalEventMapper,
     IBOLEventStatusMapper bolEventStatusMapper,
     IDALEventStatusMapper dalEventStatusMapper,
     IBOLFamilyMapper bolFamilyMapper,
     IDALFamilyMapper dalFamilyMapper,
     IBOLRateMapper bolRateMapper,
     IDALRateMapper dalRateMapper,
     IBOLSpaceMapper bolSpaceMapper,
     IDALSpaceMapper dalSpaceMapper,
     IBOLSpaceFeatureMapper bolSpaceFeatureMapper,
     IDALSpaceFeatureMapper dalSpaceFeatureMapper,
     IBOLStudentMapper bolStudentMapper,
     IDALStudentMapper dalStudentMapper,
     IBOLStudioMapper bolStudioMapper,
     IDALStudioMapper dalStudioMapper,
     IBOLTeacherMapper bolTeacherMapper,
     IDALTeacherMapper dalTeacherMapper,
     IBOLTeacherSkillMapper bolTeacherSkillMapper,
     IDALTeacherSkillMapper dalTeacherSkillMapper,
     IBOLUserMapper bolUserMapper,
     IDALUserMapper dalUserMapper)
     : base()
 {
     this.TenantRepository      = tenantRepository;
     this.TenantModelValidator  = tenantModelValidator;
     this.BolTenantMapper       = bolTenantMapper;
     this.DalTenantMapper       = dalTenantMapper;
     this.BolAdminMapper        = bolAdminMapper;
     this.DalAdminMapper        = dalAdminMapper;
     this.BolEventMapper        = bolEventMapper;
     this.DalEventMapper        = dalEventMapper;
     this.BolEventStatusMapper  = bolEventStatusMapper;
     this.DalEventStatusMapper  = dalEventStatusMapper;
     this.BolFamilyMapper       = bolFamilyMapper;
     this.DalFamilyMapper       = dalFamilyMapper;
     this.BolRateMapper         = bolRateMapper;
     this.DalRateMapper         = dalRateMapper;
     this.BolSpaceMapper        = bolSpaceMapper;
     this.DalSpaceMapper        = dalSpaceMapper;
     this.BolSpaceFeatureMapper = bolSpaceFeatureMapper;
     this.DalSpaceFeatureMapper = dalSpaceFeatureMapper;
     this.BolStudentMapper      = bolStudentMapper;
     this.DalStudentMapper      = dalStudentMapper;
     this.BolStudioMapper       = bolStudioMapper;
     this.DalStudioMapper       = dalStudioMapper;
     this.BolTeacherMapper      = bolTeacherMapper;
     this.DalTeacherMapper      = dalTeacherMapper;
     this.BolTeacherSkillMapper = bolTeacherSkillMapper;
     this.DalTeacherSkillMapper = dalTeacherSkillMapper;
     this.BolUserMapper         = bolUserMapper;
     this.DalUserMapper         = dalUserMapper;
     this.logger = logger;
 }
コード例 #5
0
ファイル: TenantService.cs プロジェクト: Vin2454/samples
 public TenantService(
     ILogger <ITenantRepository> logger,
     ITenantRepository tenantRepository,
     IApiTenantRequestModelValidator tenantModelValidator,
     IBOLTenantMapper boltenantMapper,
     IDALTenantMapper daltenantMapper,
     IBOLAdminMapper bolAdminMapper,
     IDALAdminMapper dalAdminMapper,
     IBOLEventMapper bolEventMapper,
     IDALEventMapper dalEventMapper,
     IBOLEventStatusMapper bolEventStatusMapper,
     IDALEventStatusMapper dalEventStatusMapper,
     IBOLFamilyMapper bolFamilyMapper,
     IDALFamilyMapper dalFamilyMapper,
     IBOLRateMapper bolRateMapper,
     IDALRateMapper dalRateMapper,
     IBOLSpaceMapper bolSpaceMapper,
     IDALSpaceMapper dalSpaceMapper,
     IBOLSpaceFeatureMapper bolSpaceFeatureMapper,
     IDALSpaceFeatureMapper dalSpaceFeatureMapper,
     IBOLStudentMapper bolStudentMapper,
     IDALStudentMapper dalStudentMapper,
     IBOLStudioMapper bolStudioMapper,
     IDALStudioMapper dalStudioMapper,
     IBOLTeacherMapper bolTeacherMapper,
     IDALTeacherMapper dalTeacherMapper,
     IBOLTeacherSkillMapper bolTeacherSkillMapper,
     IDALTeacherSkillMapper dalTeacherSkillMapper,
     IBOLUserMapper bolUserMapper,
     IDALUserMapper dalUserMapper)
     : base(logger,
            tenantRepository,
            tenantModelValidator,
            boltenantMapper,
            daltenantMapper,
            bolAdminMapper,
            dalAdminMapper,
            bolEventMapper,
            dalEventMapper,
            bolEventStatusMapper,
            dalEventStatusMapper,
            bolFamilyMapper,
            dalFamilyMapper,
            bolRateMapper,
            dalRateMapper,
            bolSpaceMapper,
            dalSpaceMapper,
            bolSpaceFeatureMapper,
            dalSpaceFeatureMapper,
            bolStudentMapper,
            dalStudentMapper,
            bolStudioMapper,
            dalStudioMapper,
            bolTeacherMapper,
            dalTeacherMapper,
            bolTeacherSkillMapper,
            dalTeacherSkillMapper,
            bolUserMapper,
            dalUserMapper)
 {
 }