public AgencyController(IRequestService RequestService, ICategoryService CategoryService, ICustomerService CustomerServices, IUserService UserService, IRoleService RoleService, IFormService FormService, IRoleDetailService RoleDetailService, IUserRoleService UserRoleService, IAgencyIndividualService AgencyIndividualService, IAgencyJobService AgencyJobService, ICustomerLocationService CustomerLocationService, INotificationService NotificationService) : base(UserService, RoleService, FormService, RoleDetailService, UserRoleService) { 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._NotificationService = NotificationService; }
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; }