Exemplo n.º 1
0
 public List <Role> GetAllRolesByApplicationID(string applicationID)
 {
     if (string.IsNullOrWhiteSpace(applicationID))
     {
         return(new List <Role>());
     }
     return(RoleDA.GetAllRolesByApplicationID(applicationID));
 }