Exemplo n.º 1
0
        public static DataTable GetTableListByPanelID(Guid PanelID)
        {
            UD_Panel_TableDAL dal = (UD_Panel_TableDAL)DataAccess.CreateObject(DALClassName);

            return(dal.GetTableListByPanelID(PanelID));
        }
Exemplo n.º 2
0
 public UD_Panel_TableBLL(Guid id)
     : base(DALClassName)
 {
     _dal = (UD_Panel_TableDAL)_DAL;
     FillModel(id);
 }
Exemplo n.º 3
0
 public UD_Panel_TableBLL(Guid id, bool bycache)
     : base(DALClassName)
 {
     _dal = (UD_Panel_TableDAL)_DAL;
     FillModel(id, bycache);
 }
Exemplo n.º 4
0
 ///<summary>
 ///UD_Panel_TableBLL
 ///</summary>
 public UD_Panel_TableBLL()
     : base(DALClassName)
 {
     _dal = (UD_Panel_TableDAL)_DAL;
     _m   = new UD_Panel_Table();
 }