123
This commit is contained in:
parent
768dce69f1
commit
db0dbba5b4
@ -1,15 +0,0 @@
|
|||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Text;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
|
|
||||||
namespace ElectronicsShopContracts.BindingModels
|
|
||||||
{
|
|
||||||
public class ReportBindingModel
|
|
||||||
{
|
|
||||||
public string FileName { get; set; } = string.Empty;
|
|
||||||
public DateTime? DateFrom { get; set; }
|
|
||||||
public DateTime? DateTo { get; set; }
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,16 +0,0 @@
|
|||||||
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 IReportLogic
|
|
||||||
{
|
|
||||||
// Получение списка заказов за определенный период
|
|
||||||
List<ReportOrdersViewModel> GetOrders(ReportBindingModel model);
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,17 +0,0 @@
|
|||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Text;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
|
|
||||||
namespace ElectronicsShopContracts.ViewModels
|
|
||||||
{
|
|
||||||
public class ReportOrdersViewModel
|
|
||||||
{
|
|
||||||
public int ID { get; set; }
|
|
||||||
public DateTime DateCreate { get; set; }
|
|
||||||
public double Sum { get; set; }
|
|
||||||
public string PaymeantOption { get; set; } = string.Empty;
|
|
||||||
public string OrderStatus { get; set; } = string.Empty;
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user