public LocationController(ICategoryService CategoryService, ILocationService LocationService, ILocationImagesService LocationImagesService, ILocationTagService LocationTagService, ICustomerService CustomerService, ILocationPurchaseService LocationPurchaseService, INotificationService NotificationService)
 {
     this._LocationService         = LocationService;
     this._LocationImagesService   = LocationImagesService;
     this._CustomerService         = CustomerService;
     this._LocationPurchaseService = LocationPurchaseService;
     this._LocationTagService      = LocationTagService;
     this._NotificationService     = NotificationService;
     this._CategoryService         = CategoryService;
 }
 public LocationController(ICategoryService CategoryService, ILocationTagService LocationTagService, ICustomerService CustomerService, ILocationImagesService LocationImagesService, IUserService UserService, IRoleService RoleService, IUserRoleService UserRoleService, IFormService FormService, IRoleDetailService RoleDetailService, ILocationService LocationService)
     : base(UserService, RoleService, FormService, RoleDetailService, UserRoleService)
 {
     this._LocationImagesService = LocationImagesService;
     this._LocationTagService    = LocationTagService;
     this._UserRoleService       = UserRoleService;
     this._LocationService       = LocationService;
     this._CustomerService       = CustomerService;
     this._CategoryService       = CategoryService;
 }