예제 #1
0
 public bool IsExist(string teamNameToDelete)
 {
     try
     {
         if (f1Repository.IsExist(teamNameToDelete))
         {
             return(true);
         }
         else
         {
             return(false);
         }
     }
     catch (F1Exception f1e)
     {
         throw new TeamServiceException(f1e.Message);
     }
 }