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

            return(lib.GetRoleFeaturesForEmployee(UserID));
        }