コード例 #1
0
ファイル: BaseBO.cs プロジェクト: Dung12345678/Dao
 public List <BaseModel> GetAllListObject()
 {
     try
     {
         return(baseFacade.GetAllListObject());
     }
     catch (FacadeException fx)
     {
         //throw new BOException("Can not find" + fx.Message);
         return(new List <BaseModel>());
     }
 }