using System; using System.Collections.Generic; using System.Linq; using System.Web.Mvc; using NHibernate; using NHibernate.Linq; using Sleis.Models; using Sleis.Infrastructure; using log4net; using Sleis.Utility; using Sleis.Data; namespace Sleis.Service { public class ReportAttachmentService : BaseService, IReportAttachmentService { public IReportAttachmentData ReportAttachmentData { get; set; } public IReportAttachmentDetailData ReportAttachmentDetailData { get; set; } public override void Init() { base.Init(); ArgumentValidationUtility.ThrowOnNull(ReportAttachmentData, "ReportAttachmentData"); ArgumentValidationUtility.ThrowOnNull(ReportAttachmentDetailData, "ReportAttachmentDetailData"); } public void Save(IReportAttachmentDetail model) { throw new NotImplementedException(); } } }