예제 #1
0
 public List <Attachment> GetAttachmentByID(List <Guid> ids)
 {
     return(AttachmentDa.GetAttachmentByID(ids));
 }
예제 #2
0
 public void AddAttach(Attachment attach)
 {
     AttachmentDa.InsertAttach(attach);
 }
예제 #3
0
 public Attachment GetAttachmentByID(Guid id)
 {
     return(AttachmentDa.GetAttachmentByID(id));
 }