Merge branch 'main' of http://student.git.athene.tech/shadowik/CourseWork_BankYouBankrupt
This commit is contained in:
commit
31b4ab19bf
@ -35,6 +35,8 @@ namespace BankYouBankruptView
|
||||
option.SetMinimumLevel(LogLevel.Information);
|
||||
option.AddNLog("nlog.config");
|
||||
});
|
||||
|
||||
services.AddTransient<Form1>();
|
||||
}
|
||||
}
|
||||
}
|
@ -1,5 +1,4 @@
|
||||
using BlacksmithWorkshopContracts.ViewModels;
|
||||
using System;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
@ -15,8 +14,5 @@ namespace BankYouBankruptBusinessLogic.OfficePackage.HelperModels
|
||||
|
||||
//заголовок
|
||||
public string Title { get; set; } = string.Empty;
|
||||
|
||||
//список заготовок по изделиям
|
||||
public List<ReportManufactureWorkPieceViewModel> ManufactureWorkPieces { get; set; } = new();
|
||||
}
|
||||
}
|
||||
|
@ -1,4 +1,4 @@
|
||||
using BlacksmithWorkshopContracts.ViewModels;
|
||||
using BankYouBankruptContracts.ViewModels;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
@ -19,6 +19,6 @@ namespace BankYouBankruptBusinessLogic.OfficePackage.HelperModels
|
||||
public DateTime DateTo { get; set; }
|
||||
|
||||
//перечень заказов за указанный период для вывода/сохранения
|
||||
public List<ReportOrdersViewModel> Orders { get; set; } = new();
|
||||
public List<ReportCashierViewModel> reportAccounts { get; set; } = new();
|
||||
}
|
||||
}
|
||||
|
@ -1,4 +1,4 @@
|
||||
using BlacksmithWorkshopContracts.ViewModels;
|
||||
using BankYouBankruptContracts.ViewModels;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
@ -14,7 +14,7 @@ namespace BankYouBankruptBusinessLogic.OfficePackage.HelperModels
|
||||
|
||||
public string Title { get; set; } = string.Empty;
|
||||
|
||||
//список заготовок для вывода и сохранения
|
||||
public List<ManufactureViewModel> Manufactures { get; set; } = new();
|
||||
//список счетов для вывода и сохранения
|
||||
public List<AccountViewModel> Accounts { get; set; } = new();
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user