コード例 #1
0
 public UserController(IUserEntrance userEntrance, IUserCRUDService userCRUDService, IServiceResultStatusToResponseConverter responseConverter, IMapper mapper)
 {
     this.userEntrance      = userEntrance;
     this.userCRUDService   = userCRUDService;
     this.responseConverter = responseConverter;
     this.mapper            = mapper;
 }
コード例 #2
0
 public CatSharingController(ICatSharingService catSharingService, IServiceResultStatusToResponseConverter responseConverter)
 {
     this.catSharingService = catSharingService;
     this.responseConverter = responseConverter;
 }
コード例 #3
0
 public StatisticController(IStatisticService statisticService, IServiceResultStatusToResponseConverter responseConverter)
 {
     this.statisticService  = statisticService;
     this.responseConverter = responseConverter;
 }