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

            return(lib.GetRolesForEmployee(UserID));
        }