コード例 #1
0
 public CustomerReviewController(IReviewNotification reviewNotification, IReview review, IReviewAction reviewAction, IReviewKind reviewKind)
 {
     _review             = review;
     _reviewNotification = reviewNotification;
     _reviewAction       = reviewAction;
     _reviewKind         = reviewKind;
 }
コード例 #2
0
 public UssdController(IOrganisationAsync organisation, ICustomer customer, ITeamMember teamMember, IReviewNotification reviewNotification, IReview review)
 {
     _organisation       = organisation;
     _customer           = customer;
     _teamMember         = teamMember;
     _reviewNotification = reviewNotification;
     _review             = review;
 }