public AccountController(IUserService UserService, IRoleService RoleService, IFormService FormService, IRoleDetailService RoleDetailService,
                          IUserRoleService UserRoleService, ICustomerService CustomerService, ICategoryService CategoryService, IAgencyIndividualService AgencyIndividualService)
     : base(UserService, RoleService, FormService, RoleDetailService, UserRoleService)
 {
     this._CategoryService         = CategoryService;
     this._AgencyIndividualService = AgencyIndividualService;
 }
 public UserApiController(IAgencyIndividualService AgencyIndividualService, IUserService UserService, ICustomerService CustomerServer, INotificationService NotificationService)
 {
     this._AgencyIndividualService = AgencyIndividualService;
     this._UserService             = UserService;
     this._CustomerService         = CustomerServer;
     this._NotificationService     = NotificationService;
 }
 // public INotificationService _NotificationService { get; set; }
 public CategoryApiController(IAgencyIndividualService AgencyIndividualService, ICategoryService CategoryService, ICustomerService CustomerService, IUserService UserService, IUserRoleService UserRoleService)
 {
     this._AgencyIndividualService = AgencyIndividualService;
     this._CustomerService         = CustomerService;
     this._UserService             = UserService;
     this._UserRoleService         = UserRoleService;
     this._CategoryService         = CategoryService;
     //this._NotificationService = NotificationService;
 }
 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;
 }
Beispiel #5
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;
 }