BL.Security.getRolesUsuario C# (CSharp) Method

getRolesUsuario() public method

public getRolesUsuario ( string username ) : List
username string
return List
        public List<long> getRolesUsuario(string username)
        {
            try
            {
                return new Rol().getRolesUsuario(username);
            }
            catch (Exception ex)
            {
                throw new Exception(ex.ToString() + "  --Security.cs / getRolesUsuarios()");
            }
        }