public DataPackageController(IExceptionLogService errorService, IDataPackageService dataPackageService, IWarningProfileService warningProfileService) : base(errorService)
 {
     _errorService          = errorService;
     _dataPackageService    = dataPackageService;
     _warningProfileService = warningProfileService;
 }
 public WarningProfileController(IExceptionLogService errorService, IWarningProfileService warningProfileService, ApplicationUserManager userManager) : base(errorService)
 {
     _warningProfileService = warningProfileService;
     _userManager           = userManager;
     _errorService          = errorService;
 }