예제 #1
0
 public bool IsExsist(string teamNameToDelete)
 {
     try
     {
         if (f1Repository.Isexsist(teamNameToDelete))
         {
             return(true);
         }
         else
         {
             return(false);
         }
     }
     catch (Exception)
     {
         throw;
     }
 }