Exemple #1
0
 public UssdController(IOrganisationAsync organisation, ICustomer customer, ITeamMember teamMember, IReviewNotification reviewNotification, IReview review)
 {
     _organisation       = organisation;
     _customer           = customer;
     _teamMember         = teamMember;
     _reviewNotification = reviewNotification;
     _review             = review;
 }
Exemple #2
0
 public OrganisationController(IOrganisationAsync organisation)
 {
     _organisation = organisation;
 }
 public ProjectController(IProject project, IOrganisationAsync org)
 {
     _project = project;
     _org     = org;
 }
 public OrganisationController(IOrganisationAsync organisation, IUserAsync userAsync)
 {
     _organisation = organisation;
     _userAsync    = userAsync;
 }