public PN_CommentBLL(int id)
     : base(DALClassName)
 {
     _dal = (PN_CommentDAL)_DAL;
     FillModel(id);
 }
 public PN_CommentBLL(int id, bool bycache)
     : base(DALClassName)
 {
     _dal = (PN_CommentDAL)_DAL;
     FillModel(id, bycache);
 }
 ///<summary>
 ///PN_CommentBLL
 ///</summary>
 public PN_CommentBLL()
     : base(DALClassName)
 {
     _dal = (PN_CommentDAL)_DAL;
     _m   = new PN_Comment();
 }