コード例 #1
0
 public bool CheckExist(string field, string value)
 {
     try
     {
         return(baseFacade.CheckExist(field, value));
     }
     catch (FacadeException fx)
     {
         throw new BOException("Cannot find" + fx.Message);
     }
 }