Esempio n. 1
0
 public static void DeleteAttachment(int attachmentId)
 {
     Attachments.DeleteAttachment(attachmentId);
 }
Esempio n. 2
0
 public static void UpdateAttachment(int id, int rid, string title, string filename, string source, string content)
 {
     Attachments.UpdateAttachment(id, rid, title, filename, source, content);
 }
Esempio n. 3
0
 public static DataSet GetAttachementDDLById(int Id)
 {
     return(Attachments.GetAttachementDDLById(Id));
 }
Esempio n. 4
0
 public static int AddAttachment(int rid, string title, string filename, string source, string content)
 {
     return(Attachments.AddAttachment(rid, title, filename, source, content));
 }
Esempio n. 5
0
 //---------------------- Attachments  ------------------
 public static DataSet getAttachmentsByReportId(int reportId)
 {
     return(Attachments.LookupAttachments(reportId));
 }