//Gets description of dev or game
 public string GetDevDescription(string name)
 {
     try
     {
         return(userCtrl.GetDevDescription(name));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }