18 lines
516 B
C#
18 lines
516 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 IReportEmployeeLogic
|
|||
|
{
|
|||
|
List<ReportProductsViewModel> GetRoute(ReportProductBindingModel model);
|
|||
|
void SaveRoutesToWordFile(ReportProductBindingModel model);
|
|||
|
void SaveRoutesToExcelFile(ReportProductBindingModel model);
|
|||
|
}
|
|||
|
}
|