public GetMaturityLevelsByCategoryIdQuery(
     IMaturityCategoriesRepository maturityCategoriesRepository,
     IMaturityLevelsRepository maturityLevelsRepository
     )
 {
     this.maturityCategoriesRepository = maturityCategoriesRepository;
     this.maturityLevelsRepository     = maturityLevelsRepository;
 }
コード例 #2
0
 public CreateMaturityLevelCommand(
     IMaturityLevelsRepository maturityLevelsRepository,
     IMaturityCategoriesRepository maturityCategoriesRepository
     )
 {
     this.maturityLevelsRepository     = maturityLevelsRepository;
     this.maturityCategoriesRepository = maturityCategoriesRepository;
 }
コード例 #3
0
 public CreateAchievementCommand(
     IAchievementsRepository achievementsRepository,
     IMaturityLevelsRepository maturityLevelsRepository,
     IUsersRepository usersRepository
     )
 {
     this.achievementsRepository   = achievementsRepository;
     this.maturityLevelsRepository = maturityLevelsRepository;
     this.usersRepository          = usersRepository;
 }
コード例 #4
0
 public GetAllMaturityLevelsQuery(IMaturityLevelsRepository maturityLevelsRepository)
 {
     this.maturityLevelsRepository = maturityLevelsRepository;
 }
コード例 #5
0
 public UpdateMaturityLevelCommand(IMaturityLevelsRepository maturityLevelsRepository)
 {
     this.maturityLevelsRepository = maturityLevelsRepository;
 }