18 lines
528 B
C#
18 lines
528 B
C#
|
using ElectronicsShopContracts.BindingModels;
|
|||
|
using ElectronicsShopContracts.ViewModels;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace ElectronicsShopContracts.BusinessLogicContracts
|
|||
|
{
|
|||
|
public interface IReportClientLogic
|
|||
|
{
|
|||
|
List<ReportPaymeantsViewModel> GetPaymeants(ReportPaymeantBindingModel model);
|
|||
|
void SavePreservesToWordFile(ReportPaymeantBindingModel model);
|
|||
|
void SavePreservesToExcelFile(ReportPaymeantBindingModel model);
|
|||
|
}
|
|||
|
}
|