예제 #1
0
 public TrainersController(IGroupService groupService, ITrainerQueryService queryService)
 {
     this.groupService = groupService;
     this.queryService = queryService;
 }
예제 #2
0
 public TrainersController(ITrainerQueryService trainerQueryService)
 {
     this.trainerQueryService = trainerQueryService;
 }
예제 #3
0
 public TrainersController()
 {
     this.groupService = new GroupService();
     this.queryService = new TrainerQueryService();
 }
예제 #4
0
 public TrainersController()
 {
     this.trainerQueryService = new TrainerQueryService();
 }