public IEnumerable <Feature> GetFeaturesForEmployee(int UserID)
        {
            EmployeeLibrary lib = new EmployeeLibrary(ConfigurationHelper.GetsmARTDBContextConnectionString());

            return(lib.GetFeaturesForEmployee(UserID));
        }