コード例 #1
0
 public ReviewApiController(INotificationService NotificationService, IReviewAndRatingService ReviewAndRatingService, IRequestService RequestService, ICategoryService CategoryService, ICustomerService CustomerService, IUserService UserService, IUserRoleService UserRoleService)
 {
     this._ReviewAndRatingService = ReviewAndRatingService;
     this._RequestService         = RequestService;
     this._CustomerService        = CustomerService;
     this._UserService            = UserService;
     this._UserRoleService        = UserRoleService;
     this._CategoryService        = CategoryService;
     this._NotificationService    = NotificationService;
 }
コード例 #2
0
 public JobController(IReviewAndRatingService ReviewAndRatingService, IRequestService RequestService, ICategoryService CategoryService, ICustomerService CustomerServices,
                      IUserService UserService, IRoleService RoleService, IFormService FormService, IRoleDetailService RoleDetailService, IUserRoleService UserRoleService,
                      IAgencyIndividualService AgencyIndividualService, IAgencyJobService AgencyJobService, ICustomerLocationService CustomerLocationService, ICustomerPaymentService CustomerPaymentService)
     : base(UserService, RoleService, FormService, RoleDetailService, UserRoleService)
 {
     this._ReviewAndRatingService  = ReviewAndRatingService;
     this._CategoryService         = CategoryService;
     this._RequestService          = RequestService;
     this._UserRoleService         = UserRoleService;
     this._UserService             = UserService;
     this._CustomerService         = CustomerServices;
     this._AgencyIndividualService = AgencyIndividualService;
     this._AgencyJobService        = AgencyJobService;
     this._CustomerLocationService = CustomerLocationService;
     this._CustomerPaymentService  = CustomerPaymentService;
 }
コード例 #3
0
 public ProductApiController(IPurchaseService PurchaseService, IProductService ProductService, INotificationService NotificationService, IReviewAndRatingService ReviewAndRatingService, IRequestService RequestService, ICategoryService CategoryService, ICustomerService CustomerService, IUserService UserService, IUserRoleService UserRoleService)
 {
     this._PurchaseService        = PurchaseService;
     this._ProductService         = ProductService;
     this._ReviewAndRatingService = ReviewAndRatingService;
     this._RequestService         = RequestService;
     this._CustomerService        = CustomerService;
     this._UserService            = UserService;
     this._UserRoleService        = UserRoleService;
     this._CategoryService        = CategoryService;
     this._NotificationService    = NotificationService;
 }