Example #1
0
 public static bool IsExists(string c)
 {
     try
     {
         if (!CategoryDb.CheckByName(c))
         {
             return(false);
         }
         else
         {
             return(true);
         }
     }
     catch
     {
         return(true);
     }
 }