Epiworx.Business.AttachmentRepository.AttachmentSave C# (CSharp) Method

AttachmentSave() public static method

public static AttachmentSave ( Attachment attachment ) : Attachment
attachment Attachment
return Attachment
        public static Attachment AttachmentSave(Attachment attachment)
        {
            if (!attachment.IsValid)
            {
                return attachment;
            }

            Attachment result;

            if (attachment.IsNew)
            {
                result = AttachmentRepository.AttachmentInsert(attachment);
            }
            else
            {
                result = AttachmentRepository.AttachmentUpdate(attachment);
            }

            return result;
        }