бро снёс) вернул

This commit is contained in:
Леонид Малафеев 2024-05-02 12:11:19 +04:00
parent 8d8f871c80
commit f73ace27d3
2 changed files with 36 additions and 0 deletions

View File

@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CarCenterContracts.BindingModels
{
public class ReportBindingModel
{
public string FileName { get; set; } = string.Empty;
public DateTime? DateFrom { get; set; }
public DateTime? DateTo { get; set; }
}
}

View File

@ -0,0 +1,20 @@
using CarCenterContracts.BindingModels;
using CarCenterContracts.ViewModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CarCenterContracts.BusinessLogicsContracts
{
public interface IReportLogic
{
List<ReportBundlingViewModel> GetBundligs(ReportBindingModel model);
List<ReportCarViewModel> GetCars(ReportBindingModel model);
List<ReportOrderViewModel> GetOrders(ReportBindingModel model);
List<ReportPresaleViewModel> GetPresales(ReportBindingModel model);
}
}