бро снёс) вернул
This commit is contained in:
parent
8d8f871c80
commit
f73ace27d3
@ -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; }
|
||||
}
|
||||
|
||||
}
|
@ -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);
|
||||
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user