using PrecastConcretePlantContracts.BindingModels; using PrecastConcretePlantContracts.ViewModels; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace PrecastConcretePlantContracts.BusinessLogicsContracts { public interface IReportLogic { List GetDocumentBlanks(); List GetOrders(ReportBindingModel model); void SaveDocumentsToWordFile(ReportBindingModel model); void SaveProductComponentToExcelFile(ReportBindingModel model); void SaveOrdersToPdfFile(ReportBindingModel model); } }