コード例 #1
0
 public ReportService(IReportRepository reportRepository, IReportGroupRoleRepository reportGroupRoleRepository,
     IReportGroupRepository reportGroupRepository)
 {
     this._reportRepository = reportRepository;
     this._reportGroupRoleRepository = reportGroupRoleRepository;
     this._reportGroupRepository = reportGroupRepository;
 }
コード例 #2
0
 public ReportService(IReportRepository reportRepository, IReportGroupRoleRepository reportGroupRoleRepository,
                      IReportGroupRepository reportGroupRepository)
 {
     this._reportRepository          = reportRepository;
     this._reportGroupRoleRepository = reportGroupRoleRepository;
     this._reportGroupRepository     = reportGroupRepository;
 }
コード例 #3
0
 public RoleService(IRoleRepository roleRepository, IMenuRoleRepository menuRoleRepository,
                    IActionRoleRepository actionRoleRepository,
                    IReportGroupRoleRepository reportGroupRoleRepository)
 {
     this._roleRepository            = roleRepository;
     this._menuRoleRepository        = menuRoleRepository;
     this._actionRoleRepository      = actionRoleRepository;
     this._reportGroupRoleRepository = reportGroupRoleRepository;
 }
コード例 #4
0
ファイル: RoleService.cs プロジェクト: yangganggood/ReportMS
 public RoleService(IRoleRepository roleRepository, IMenuRoleRepository menuRoleRepository,
     IActionRoleRepository actionRoleRepository,
     IReportGroupRoleRepository reportGroupRoleRepository)
 {
     this._roleRepository = roleRepository;
     this._menuRoleRepository = menuRoleRepository;
     this._actionRoleRepository = actionRoleRepository;
     this._reportGroupRoleRepository = reportGroupRoleRepository;
 }
コード例 #5
0
ファイル: ReportGroupService.cs プロジェクト: radtek/ReportMS
 public ReportGroupService(IReportGroupRepository reportGroupRepository,
                           IReportGroupRoleRepository reportGroupRoleRepository)
 {
     _reportGroupRepository     = reportGroupRepository;
     _reportGroupRoleRepository = reportGroupRoleRepository;
 }
コード例 #6
0
 public ReportGroupService(IReportGroupRepository reportGroupRepository, 
     IReportGroupRoleRepository reportGroupRoleRepository)
 {
     _reportGroupRepository = reportGroupRepository;
     _reportGroupRoleRepository = reportGroupRoleRepository;
 }