Esempio n. 1
0
 public BEAttachments SelectAllInactive()
 {
     BEAttachments ds = new BEAttachments();
     DAAttachments da = new DAAttachments();
     da.SelectAllInactive(ds.tbl_Attachments);
     return ds;
 }
Esempio n. 2
0
        public BEAttachments SelectByPageTypeSpecificIDAndPageTypeID(int pageTypeSpecificID, int pageTypeID)
        {
            BEAttachments ds = new BEAttachments();
            DAAttachments da = new DAAttachments();

            da.SelectByPageTypeSpecificIDAndPageTypeID(pageTypeSpecificID, pageTypeID, ds.tbl_Attachments);
            return ds;
        }
Esempio n. 3
0
        public BEAttachments SelectByPageTypeSpecificIDAndPageTypeIDAndLinkListIDWithROColumns(int pageTypeSpecificID, int pageTypeID, int linkListID)
        {
            BEAttachments ds = new BEAttachments();
            DAAttachments da = new DAAttachments();

            da.SelectByPageTypeSpecificIDAndPageTypeIDAndLinkListIDWithROColumns(pageTypeSpecificID, pageTypeID, linkListID, ds.tbl_Attachments);
            return ds;
        }
Esempio n. 4
0
        public BEAttachments SelectByID(int AttachmentID)
        {
            BEAttachments ds = new BEAttachments();
            DAAttachments da = new DAAttachments();

            da.SelectByID(AttachmentID.ToString(), ds.tbl_Attachments);
            return ds;
        }
Esempio n. 5
0
        public BEAttachments SelectByDocumentID(int documentID)
        {
            BEAttachments ds = new BEAttachments();
            DAAttachments da = new DAAttachments();

            da.SelectByDocumentID(documentID, ds.tbl_Attachments);
            return ds;
        }
Esempio n. 6
0
 public void Update(BEAttachments ds)
 {
     DAAttachments da = new DAAttachments();
     da.Update(ds.tbl_Attachments);
 }