using System; using System.Collections.Generic; using System.Linq; using System.Web; using Sleis.Models; namespace Sleis.Service { public class PublicReportAttachmentService : ReportAttachmentService, IReportAttachmentService { public void Save(IReportAttachmentDetail model) { ReportAttachmentData.Create((PublicReportAttachmentDetail)model); } } }