Beispiel #1
0
 public bool IsExsist(string teamNameToDelet)
 {
     try
     {
         if (f1Repository.IsExsist(teamNameToDelet))
         {
             return(true);
         }
         else
         {
             return(false);
         }
     }
     catch (F1Exeception f1e)
     {
         throw new TeamServiceExcpetion(f1e.Message);
     }
 }