Exemplo n.º 1
0
 public BELinks SelectAllInactive()
 {
     BELinks ds = new BELinks();
     DALinks da = new DALinks();
     da.SelectAllInactive(ds.tbl_Links);
     return ds;
 }
Exemplo n.º 2
0
        public BELinks SelectByPageTypeSpecificIDAndPageTypeID(int pageTypeSpecificID, int pageTypeID)
        {
            BELinks ds = new BELinks();
            DALinks da = new DALinks();

            da.SelectByPageTypeSpecificIDAndPageTypeID(pageTypeSpecificID, pageTypeID, ds.tbl_Links);
            return ds;
        }
Exemplo n.º 3
0
        public BELinks SelectByPageTypeSpecificIDAndPageTypeIDAndLinkListIDWithROColumns(int pageTypeSpecificID, int pageTypeID, int linkListID)
        {
            BELinks ds = new BELinks();
            DALinks da = new DALinks();

            da.SelectByPageTypeSpecificIDAndPageTypeIDAndLinkListIDWithROColumns(pageTypeSpecificID, pageTypeID, linkListID, ds.tbl_Links);
            return ds;
        }
Exemplo n.º 4
0
        public BELinks SelectByID(int LinkID)
        {
            BELinks ds = new BELinks();
            DALinks da = new DALinks();

            da.SelectByID(LinkID.ToString(), ds.tbl_Links);
            return ds;
        }
Exemplo n.º 5
0
        public BELinks SelectByDocumentID(int documentID)
        {
            BELinks ds = new BELinks();
            DALinks da = new DALinks();

            da.SelectByDocumentID(documentID, ds.tbl_Links);
            return ds;
        }
Exemplo n.º 6
0
 public void Update(BELinks ds)
 {
     DALinks da = new DALinks();
     da.Update(ds.tbl_Links);
 }