コード例 #1
0
 public RecipientsController(
     IRecipientProfileService recipientProfileService,
     IRecipientTypeService recipientTypeService,
     ICityService cityService)
 {
     this.recipientProfileService = recipientProfileService;
     this.recipientTypeService    = recipientTypeService;
     this.cityService             = cityService;
 }
コード例 #2
0
 public ProfileController(
     IRecipientProfileService recipientProfileService,
     ICityService cityService,
     IRecipientTypeService recipientTypeService,
     IFoodCategoryService foodCategoryService,
     ICurrentUser currentUserProvider)
 {
     this.recipientProfileService = recipientProfileService;
     this.cityService             = cityService;
     this.recipientTypeService    = recipientTypeService;
     this.foodCategoryService     = foodCategoryService;
     this.currentUserProvider     = currentUserProvider;
 }