Borschevskaya A.A. Lab Work 4 Hard #8

Closed
pgirl1 wants to merge 31 commits from lab4_hard into lab3_hard
2 changed files with 4 additions and 2 deletions
Showing only changes of commit 3951bdb2f6 - Show all commits

View File

@ -9,7 +9,7 @@ namespace FurnitureAssemblyContracts.BusinessLogicsContarcts
/// Получение списка компонент с указанием, в каких изделиях используются
/// </summary>
/// <returns></returns>
List<ReportFurnitureComponentViewModel> GetProductComponent();
List<ReportFurnitureComponentViewModel> GetFurnitureComponent();
/// <summary>
/// Получение списка заказов за определенный период
/// </summary>
@ -25,7 +25,7 @@ namespace FurnitureAssemblyContracts.BusinessLogicsContarcts
/// Сохранение компонент с указаеним продуктов в файл-Excel
/// </summary>
/// <param name="model"></param>
void SaveProductComponentToExcelFile(ReportBindingModel model);
void SaveFurnitureComponentToExcelFile(ReportBindingModel model);
/// <summary>
/// Сохранение заказов в файл-Pdf
/// </summary>

View File

@ -9,5 +9,7 @@ namespace FurnitureAssemblyContracts.SearchModels
public class OrderSearchModel
{
public int? Id { get; set; }
public DateTime? DateFrom { get; set; }
public DateTime? DateTo { get; set; }
}
}