Compare commits
30 Commits
lab-4-hard
...
lab-7-hard
| Author | SHA1 | Date | |
|---|---|---|---|
| d7b6039323 | |||
| b13ae5a0f6 | |||
| 6daf8317e0 | |||
| 8dc9cc8995 | |||
| 6134ab544d | |||
| f96a4906d0 | |||
| b9fbb33468 | |||
| 7d7c2bd522 | |||
| 813564aece | |||
| a21f0e3d88 | |||
| 00a8846f33 | |||
| c692f50d0d | |||
| e7dcfd6f30 | |||
| a3e1230e5c | |||
| 8f5c38d239 | |||
| dbc3fb8394 | |||
| 524bfca4d0 | |||
| 6b7212a13d | |||
| 4113d2ab9e | |||
| d295b50e32 | |||
| f9966ae73d | |||
| d84b3850d6 | |||
| 6449c0df73 | |||
| 7beb84b967 | |||
| 082111e301 | |||
| 14b48e3a30 | |||
| f649754da7 | |||
| cec7b9240e | |||
| d2f7afae63 | |||
| b7c31860e1 |
7
.gitignore
vendored
7
.gitignore
vendored
@@ -10,7 +10,7 @@
|
||||
*.user
|
||||
*.userosscache
|
||||
*.sln.docstates
|
||||
|
||||
*.idea
|
||||
# User-specific files (MonoDevelop/Xamarin Studio)
|
||||
*.userprefs
|
||||
|
||||
@@ -247,9 +247,9 @@ orleans.codegen.cs
|
||||
# (https://github.com/github/gitignore/pull/2483#issue-259490424)
|
||||
#*.snk
|
||||
|
||||
# Since there are multiple workflows, uncomment next line to ignore bower_components
|
||||
# Since there are multiple workflows, uncomment next line to ignore bower_ingredients
|
||||
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
|
||||
#bower_components/
|
||||
#bower_ingredients/
|
||||
|
||||
# RIA/Silverlight projects
|
||||
Generated_Code/
|
||||
@@ -414,3 +414,4 @@ FodyWeavers.xsd
|
||||
# Built Visual Studio Code Extensions
|
||||
*.vsix
|
||||
|
||||
/.idea/
|
||||
|
||||
@@ -5,15 +5,20 @@
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="DocumentFormat.OpenXml" Version="3.3.0" />
|
||||
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="9.0.3" />
|
||||
<PackageReference Include="PdfSharp.MigraDoc.Standard" Version="1.51.15" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<InternalsVisibleTo Include="CandyHouseTests" />
|
||||
<InternalsVisibleTo Include="CandyHouseWebApi" />
|
||||
<InternalsVisibleTo Include="DynamicProxyGenAssembly2" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="9.0.2" />
|
||||
</ItemGroup>
|
||||
|
||||
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\CandyHouseContracts\CandyHouseContracts.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
@@ -1,75 +0,0 @@
|
||||
using CandyHouseContracts.BuisnessLogicContracts;
|
||||
using CandyHouseContracts.DataModels;
|
||||
using CandyHouseContracts.Exceptions;
|
||||
using CandyHouseContracts.Extensions;
|
||||
using CandyHouseContracts.StoragesContracts;
|
||||
using Microsoft.Extensions.Logging;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Text.Json;
|
||||
using System.Text.RegularExpressions;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace CandyHouseBusinessLogic.Implementations;
|
||||
|
||||
public class ClientBusinessLogicContract(IClientStorageContract clientStorageContract, ILogger logger) : IClientBusinessLogicContract
|
||||
{
|
||||
private readonly ILogger _logger = logger;
|
||||
private readonly IClientStorageContract _clientStorageContract = clientStorageContract;
|
||||
|
||||
public List<ClientDataModel> GetAllClients()
|
||||
{
|
||||
_logger.LogInformation("GetAllClients");
|
||||
return _clientStorageContract.GetList() ?? throw new NullListException();
|
||||
}
|
||||
|
||||
public ClientDataModel GetClientByData(string data)
|
||||
{
|
||||
_logger.LogInformation("Get element by data: {data}", data);
|
||||
if (data.IsEmpty())
|
||||
{
|
||||
throw new ArgumentNullException(nameof(data));
|
||||
}
|
||||
if (data.IsGuid())
|
||||
{
|
||||
return _clientStorageContract.GetElementById(data) ?? throw new ElementNotFoundException(data);
|
||||
}
|
||||
if (Regex.IsMatch(data, @"^((8|\+7)[\- ]?)?(\(?\d{3}\)?[\- ]?)?[\d\- ]{7,10}$"))
|
||||
{
|
||||
return _clientStorageContract.GetElementByPhoneNumber(data) ?? throw new ElementNotFoundException(data);
|
||||
}
|
||||
return _clientStorageContract.GetElementByFIO(data) ?? throw new ElementNotFoundException(data);
|
||||
}
|
||||
|
||||
public void InsertClient(ClientDataModel clientDataModel)
|
||||
{
|
||||
_logger.LogInformation("New data: {json}", JsonSerializer.Serialize(clientDataModel));
|
||||
ArgumentNullException.ThrowIfNull(clientDataModel);
|
||||
clientDataModel.Validate();
|
||||
_clientStorageContract.AddElement(clientDataModel);
|
||||
}
|
||||
|
||||
public void UpdateClient(ClientDataModel clientDataModel)
|
||||
{
|
||||
_logger.LogInformation("Update data: {json}", JsonSerializer.Serialize(clientDataModel));
|
||||
ArgumentNullException.ThrowIfNull(clientDataModel);
|
||||
clientDataModel.Validate();
|
||||
_clientStorageContract.UpdElement(clientDataModel);
|
||||
}
|
||||
|
||||
public void DeleteClient(string id)
|
||||
{
|
||||
_logger.LogInformation("Delete by id: {id}", id);
|
||||
if (id.IsEmpty())
|
||||
{
|
||||
throw new ArgumentNullException(nameof(id));
|
||||
}
|
||||
if (!id.IsGuid())
|
||||
{
|
||||
throw new ValidationException("Id is not a unique identifier");
|
||||
}
|
||||
_clientStorageContract.DelElement(id);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,80 @@
|
||||
using CandyHouseContracts.BusinessLogicsContracts;
|
||||
using CandyHouseContracts.DataModels;
|
||||
using CandyHouseContracts.Exceptions;
|
||||
using CandyHouseContracts.Extensions;
|
||||
using CandyHouseContracts.StoragesContracts;
|
||||
using Microsoft.Extensions.Logging;
|
||||
using System.Text.Json;
|
||||
using Microsoft.Extensions.Localization;
|
||||
using CandyHouseContracts.Resources;
|
||||
|
||||
namespace CandyHouseBusinessLogic.Implementations;
|
||||
internal class CustomerBusinessLogicContract(ICustomerStorageContract customerStorage, IStringLocalizer<Messages> localizer, ILogger<CustomerBusinessLogicContract> logger) : ICustomerBusinessLogicContract
|
||||
{
|
||||
private readonly ILogger<CustomerBusinessLogicContract> _logger = logger;
|
||||
private readonly ICustomerStorageContract _customerStorage = customerStorage;
|
||||
private readonly IStringLocalizer<Messages> _localizer = localizer;
|
||||
|
||||
public List<CustomerDataModel> GetAllCustomers()
|
||||
{
|
||||
_logger.LogInformation("Fetching all customers");
|
||||
return _customerStorage.GetList();
|
||||
}
|
||||
|
||||
public CustomerDataModel GetCustomerByData(string data)
|
||||
{
|
||||
_logger.LogInformation("Fetching customer by data={data}", data);
|
||||
if (data.IsEmpty())
|
||||
{
|
||||
throw new ArgumentNullException(nameof(data));
|
||||
}
|
||||
CustomerDataModel? result;
|
||||
if (data.IsGuid())
|
||||
{
|
||||
result = _customerStorage.GetElementById(data) ?? throw new ElementNotFoundException(data, _localizer);
|
||||
}
|
||||
else if (data.StartsWith("+7"))
|
||||
{
|
||||
result = _customerStorage.GetElementByPhone(data) ?? throw new ElementNotFoundException(data, _localizer);
|
||||
}
|
||||
else if (data.Contains("@"))
|
||||
{
|
||||
result = _customerStorage.GetElementByEmail(data) ?? throw new ElementNotFoundException(data, _localizer);
|
||||
}
|
||||
else
|
||||
{
|
||||
result = _customerStorage.GetElementByFIO(data) ?? throw new ElementNotFoundException(data, _localizer);
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
public void InsertCustomer(CustomerDataModel customerDataModel)
|
||||
{
|
||||
_logger.LogInformation("Inserting customer: {json}", JsonSerializer.Serialize(customerDataModel));
|
||||
ArgumentNullException.ThrowIfNull(customerDataModel);
|
||||
customerDataModel.Validate(_localizer);
|
||||
_customerStorage.AddElement(customerDataModel);
|
||||
}
|
||||
|
||||
public void UpdateCustomer(CustomerDataModel customerDataModel)
|
||||
{
|
||||
_logger.LogInformation("Updating customer: {json}", JsonSerializer.Serialize(customerDataModel));
|
||||
ArgumentNullException.ThrowIfNull(customerDataModel);
|
||||
customerDataModel.Validate(_localizer);
|
||||
_customerStorage.UpdateElement(customerDataModel);
|
||||
}
|
||||
|
||||
public void DeleteCustomer(string id)
|
||||
{
|
||||
_logger.LogInformation("Deleting customer with id={id}", id);
|
||||
if (id.IsEmpty())
|
||||
{
|
||||
throw new ArgumentNullException(nameof(id));
|
||||
}
|
||||
if (!id.IsGuid())
|
||||
{
|
||||
throw new ValidationException(string.Format(_localizer["ValidationExceptionMessageNotAId"], "Id"));
|
||||
}
|
||||
_customerStorage.DeleteElement(id);
|
||||
}
|
||||
}
|
||||
@@ -1,109 +0,0 @@
|
||||
using CandyHouseContracts.BuisnessLogicContracts;
|
||||
using CandyHouseContracts.DataModels;
|
||||
using CandyHouseContracts.Exceptions;
|
||||
using CandyHouseContracts.Extensions;
|
||||
using CandyHouseContracts.StoragesContracts;
|
||||
using Microsoft.Extensions.Logging;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Text.Json;
|
||||
using System.Text.RegularExpressions;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace CandyHouseBusinessLogic.Implementations;
|
||||
|
||||
public class EmployeeBusinessLogicContract(IEmployeeStorageContract employeeStorageContract, ILogger logger) : IEmployeeBusinessLogicContract
|
||||
{
|
||||
private readonly ILogger _logger = logger;
|
||||
private readonly IEmployeeStorageContract _employeeStorageContract = employeeStorageContract;
|
||||
|
||||
public List<EmployeeDataModel> GetAllEmployees(bool onlyActive = true)
|
||||
{
|
||||
_logger.LogInformation("GetAllEmployees params: {onlyActive}", onlyActive);
|
||||
return _employeeStorageContract.GetList(onlyActive) ?? throw new NullListException();
|
||||
}
|
||||
|
||||
public List<EmployeeDataModel> GetAllEmployeesByPost(string postId, bool onlyActive = true)
|
||||
{
|
||||
_logger.LogInformation("GetAllEmployees params: {postId}, {onlyActive},", postId, onlyActive);
|
||||
if (postId.IsEmpty())
|
||||
{
|
||||
throw new ArgumentNullException(nameof(postId));
|
||||
}
|
||||
if (!postId.IsGuid())
|
||||
{
|
||||
throw new ValidationException("The value in the field postId is not a unique identifier.");
|
||||
}
|
||||
return _employeeStorageContract.GetList(onlyActive, postId) ?? throw new NullListException();
|
||||
}
|
||||
|
||||
public List<EmployeeDataModel> GetAllEmployeesByBirthDate(DateTime fromDate, DateTime toDate, bool onlyActive = true)
|
||||
{
|
||||
_logger.LogInformation("GetAllEmployees params: {onlyActive}, {fromDate}, {toDate}", onlyActive, fromDate, toDate);
|
||||
if (fromDate.IsDateNotOlder(toDate))
|
||||
{
|
||||
throw new IncorrectDatesException(fromDate, toDate);
|
||||
}
|
||||
return _employeeStorageContract.GetList(onlyActive, fromBirthDate: fromDate, toBirthDate: toDate) ?? throw new NullListException();
|
||||
}
|
||||
|
||||
public List<EmployeeDataModel> GetAllEmployeesByEmploymentDate(DateTime fromDate, DateTime toDate, bool onlyActive = true)
|
||||
{
|
||||
_logger.LogInformation("GetAllEmployees params: {onlyActive}, {fromDate}, {toDate}", onlyActive, fromDate, toDate);
|
||||
if (fromDate.IsDateNotOlder(toDate))
|
||||
{
|
||||
throw new IncorrectDatesException(fromDate, toDate);
|
||||
}
|
||||
return _employeeStorageContract.GetList(onlyActive, fromEmploymentDate: fromDate, toEmploymentDate: toDate) ?? throw new NullListException();
|
||||
}
|
||||
|
||||
public EmployeeDataModel GetEmployeeByData(string data)
|
||||
{
|
||||
_logger.LogInformation("Get element by data: {data}", data);
|
||||
if (data.IsEmpty())
|
||||
{
|
||||
throw new ArgumentNullException(nameof(data));
|
||||
}
|
||||
if (data.IsGuid())
|
||||
{
|
||||
return _employeeStorageContract.GetElementById(data) ?? throw new ElementNotFoundException(data);
|
||||
}
|
||||
if (Regex.IsMatch(data, @"^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$"))
|
||||
{
|
||||
return _employeeStorageContract.GetElementByEmail(data) ?? throw new ElementNotFoundException(data);
|
||||
}
|
||||
return _employeeStorageContract.GetElementByFIO(data) ?? throw new ElementNotFoundException(data);
|
||||
}
|
||||
|
||||
public void InsertEmployee(EmployeeDataModel employeeDataModel)
|
||||
{
|
||||
_logger.LogInformation("New data: {json}", JsonSerializer.Serialize(employeeDataModel));
|
||||
ArgumentNullException.ThrowIfNull(employeeDataModel);
|
||||
employeeDataModel.Validate();
|
||||
_employeeStorageContract.AddElement(employeeDataModel);
|
||||
}
|
||||
|
||||
public void UpdateEmployee(EmployeeDataModel employeeDataModel)
|
||||
{
|
||||
_logger.LogInformation("Update data: {json}", JsonSerializer.Serialize(employeeDataModel));
|
||||
ArgumentNullException.ThrowIfNull(employeeDataModel);
|
||||
employeeDataModel.Validate();
|
||||
_employeeStorageContract.UpdElement(employeeDataModel);
|
||||
}
|
||||
|
||||
public void DeleteEmployee(string id)
|
||||
{
|
||||
_logger.LogInformation("Delete by id: {id}", id);
|
||||
if (id.IsEmpty())
|
||||
{
|
||||
throw new ArgumentNullException(nameof(id));
|
||||
}
|
||||
if (!id.IsGuid())
|
||||
{
|
||||
throw new ValidationException("Id is not a unique identifier");
|
||||
}
|
||||
_employeeStorageContract.DelElement(id);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,100 @@
|
||||
using CandyHouseContracts.BusinessLogicsContracts;
|
||||
using CandyHouseContracts.DataModels;
|
||||
using CandyHouseContracts.Exceptions;
|
||||
using CandyHouseContracts.Extensions;
|
||||
using CandyHouseContracts.StoragesContracts;
|
||||
using Microsoft.Extensions.Logging;
|
||||
using System.Text.Json;
|
||||
using Microsoft.Extensions.Localization;
|
||||
using CandyHouseContracts.Resources;
|
||||
|
||||
namespace CandyHouseBusinessLogic.Implementations;
|
||||
internal class IngredientBusinessLogicContract(IIngredientStorageContract ingredientStorage, IStringLocalizer<Messages> localizer, ILogger<IngredientBusinessLogicContract> logger) : IIngredientBusinessLogicContract
|
||||
{
|
||||
private readonly ILogger<IngredientBusinessLogicContract> _logger = logger;
|
||||
private readonly IIngredientStorageContract _ingredientStorage = ingredientStorage;
|
||||
private readonly IStringLocalizer<Messages> _localizer = localizer;
|
||||
|
||||
public List<IngredientDataModel> GetAllIngredients(bool onlyActive = true)
|
||||
{
|
||||
_logger.LogInformation("GetAllIngredients params: {onlyActive}", onlyActive);
|
||||
return _ingredientStorage.GetList(onlyActive, null);
|
||||
}
|
||||
|
||||
public List<IngredientDataModel> GetAllIngredientsByManufacturer(string manufacturerId, bool onlyActive = true)
|
||||
{
|
||||
_logger.LogInformation("GetAllIngredients params: {manufacturerId}, {onlyActive}", manufacturerId, onlyActive);
|
||||
if (manufacturerId.IsEmpty())
|
||||
{
|
||||
throw new ArgumentNullException(nameof(manufacturerId));
|
||||
}
|
||||
if (!manufacturerId.IsGuid())
|
||||
{
|
||||
throw new ValidationException(string.Format(_localizer["ValidationExceptionMessageNotAId"], "ManufacturerId"));
|
||||
}
|
||||
return _ingredientStorage.GetList(onlyActive, manufacturerId);
|
||||
}
|
||||
|
||||
public List<IngredientHistoryDataModel> GetIngredientHistory(string ingredientId)
|
||||
{
|
||||
_logger.LogInformation("GetIngredientHistory for {ingredientId}", ingredientId);
|
||||
if (ingredientId.IsEmpty())
|
||||
{
|
||||
throw new ArgumentNullException(nameof(ingredientId));
|
||||
}
|
||||
if (!ingredientId.IsGuid())
|
||||
{
|
||||
throw new ValidationException(string.Format(_localizer["ValidationExceptionMessageNotAId"], "IngredientId"));
|
||||
}
|
||||
return _ingredientStorage.GetHistoryByIngredientId(ingredientId);
|
||||
}
|
||||
|
||||
public IngredientDataModel GetIngredientByData(string data)
|
||||
{
|
||||
_logger.LogInformation("Get element by data: {data}", data);
|
||||
if (data.IsEmpty())
|
||||
{
|
||||
throw new ArgumentNullException(nameof(data));
|
||||
}
|
||||
IngredientDataModel? result;
|
||||
if (data.IsGuid())
|
||||
{
|
||||
result = _ingredientStorage.GetElementById(data) ?? throw new ElementNotFoundException(data, _localizer);
|
||||
}
|
||||
else
|
||||
{
|
||||
result = _ingredientStorage.GetElementByName(data) ?? throw new ElementNotFoundException(data, _localizer);
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
public void InsertIngredient(IngredientDataModel ingredientDataModel)
|
||||
{
|
||||
_logger.LogInformation("New data: {json}", JsonSerializer.Serialize(ingredientDataModel));
|
||||
ArgumentNullException.ThrowIfNull(ingredientDataModel);
|
||||
ingredientDataModel.Validate(_localizer);
|
||||
_ingredientStorage.AddElement(ingredientDataModel);
|
||||
}
|
||||
|
||||
public void UpdateIngredient(IngredientDataModel ingredientDataModel)
|
||||
{
|
||||
_logger.LogInformation("Update data: {json}", JsonSerializer.Serialize(ingredientDataModel));
|
||||
ArgumentNullException.ThrowIfNull(ingredientDataModel);
|
||||
ingredientDataModel.Validate(_localizer);
|
||||
_ingredientStorage.UpdateElement(ingredientDataModel);
|
||||
}
|
||||
|
||||
public void DeleteIngredient(string id)
|
||||
{
|
||||
_logger.LogInformation("Delete by id: {id}", id);
|
||||
if (id.IsEmpty())
|
||||
{
|
||||
throw new ArgumentNullException(nameof(id));
|
||||
}
|
||||
if (!id.IsGuid())
|
||||
{
|
||||
throw new ValidationException(string.Format(_localizer["ValidationExceptionMessageNotAId"], "Id"));
|
||||
}
|
||||
_ingredientStorage.DeleteElement(id);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,79 @@
|
||||
using CandyHouseContracts.BusinessLogicsContracts;
|
||||
using CandyHouseContracts.DataModels;
|
||||
using CandyHouseContracts.Exceptions;
|
||||
using CandyHouseContracts.Extensions;
|
||||
using CandyHouseContracts.StoragesContracts;
|
||||
using Microsoft.Extensions.Logging;
|
||||
using System.Text.Json;
|
||||
using Microsoft.Extensions.Localization;
|
||||
using CandyHouseContracts.Resources;
|
||||
|
||||
namespace CandyHouseBusinessLogic.Implementations;
|
||||
internal class ManufacturerBusinessLogicContract(IManufacturerStorageContract manufacturerStorage, IStringLocalizer<Messages> localizer, ILogger<ManufacturerBusinessLogicContract> logger) : IManufacturerBusinessLogicContract
|
||||
{
|
||||
private readonly ILogger<ManufacturerBusinessLogicContract> _logger = logger;
|
||||
private readonly IManufacturerStorageContract _manufacturerStorage = manufacturerStorage;
|
||||
private readonly IStringLocalizer<Messages> _localizer = localizer;
|
||||
|
||||
public List<ManufacturerDataModel> GetAllManufacturers()
|
||||
{
|
||||
_logger.LogInformation("GetAllManufacturers");
|
||||
return _manufacturerStorage.GetList();
|
||||
}
|
||||
|
||||
public ManufacturerDataModel GetManufacturerByData(string data)
|
||||
{
|
||||
_logger.LogInformation("Get element by data: {data}", data);
|
||||
if (data.IsEmpty())
|
||||
{
|
||||
throw new ArgumentNullException(nameof(data));
|
||||
}
|
||||
if (data.IsGuid())
|
||||
{
|
||||
return _manufacturerStorage.GetElementById(data) ?? throw new ElementNotFoundException(data, _localizer);
|
||||
}
|
||||
|
||||
// Сначала ищем по ManufacturerName
|
||||
var manufacturer = _manufacturerStorage.GetElementByName(data);
|
||||
if (manufacturer != null)
|
||||
{
|
||||
return manufacturer;
|
||||
}
|
||||
|
||||
// Если не нашли по ManufacturerName, ищем по PrevManufacturerName
|
||||
manufacturer = _manufacturerStorage.GetList()
|
||||
.FirstOrDefault(m => m.PrevManufacturerName != null && m.PrevManufacturerName.Equals(data, StringComparison.OrdinalIgnoreCase));
|
||||
|
||||
return manufacturer ?? throw new ElementNotFoundException(data, _localizer);
|
||||
}
|
||||
|
||||
public void InsertManufacturer(ManufacturerDataModel manufacturerDataModel)
|
||||
{
|
||||
_logger.LogInformation("New data: {json}", JsonSerializer.Serialize(manufacturerDataModel));
|
||||
ArgumentNullException.ThrowIfNull(manufacturerDataModel);
|
||||
manufacturerDataModel.Validate(_localizer);
|
||||
_manufacturerStorage.AddElement(manufacturerDataModel);
|
||||
}
|
||||
|
||||
public void UpdateManufacturer(ManufacturerDataModel manufacturerDataModel)
|
||||
{
|
||||
_logger.LogInformation("Update data: {json}", JsonSerializer.Serialize(manufacturerDataModel));
|
||||
ArgumentNullException.ThrowIfNull(manufacturerDataModel);
|
||||
manufacturerDataModel.Validate(_localizer);
|
||||
_manufacturerStorage.UpdateElement(manufacturerDataModel);
|
||||
}
|
||||
|
||||
public void DeleteManufacturer(string id)
|
||||
{
|
||||
_logger.LogInformation("Delete by id: {id}", id);
|
||||
if (id.IsEmpty())
|
||||
{
|
||||
throw new ArgumentNullException(nameof(id));
|
||||
}
|
||||
if (!id.IsGuid())
|
||||
{
|
||||
throw new ValidationException(string.Format(_localizer["ValidationExceptionMessageNotAId"], "Id"));
|
||||
}
|
||||
_manufacturerStorage.DeleteElement(id);
|
||||
}
|
||||
}
|
||||
@@ -1,25 +1,25 @@
|
||||
using CandyHouseContracts.BuisnessLogicContracts;
|
||||
using CandyHouseContracts.BusinessLogicsContracts;
|
||||
using CandyHouseContracts.DataModels;
|
||||
using CandyHouseContracts.Exceptions;
|
||||
using CandyHouseContracts.Extensions;
|
||||
using CandyHouseContracts.StoragesContracts;
|
||||
using Microsoft.Extensions.Logging;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Text.Json;
|
||||
using System.Threading.Tasks;
|
||||
using Microsoft.Extensions.Localization;
|
||||
using CandyHouseContracts.Resources;
|
||||
|
||||
namespace CandyHouseBusinessLogic.Implementations;
|
||||
|
||||
public class PostBusinessLogicContract(IPostStorageContract postStorageContract, ILogger logger) : IPostBusinessLogicContract
|
||||
internal class PostBusinessLogicContract(IPostStorageContract postStorageContract, IStringLocalizer<Messages> localizer, ILogger logger) : IPostBusinessLogicContract
|
||||
{
|
||||
private readonly ILogger _logger = logger;
|
||||
private readonly IPostStorageContract _postStorageContract = postStorageContract;
|
||||
private readonly IStringLocalizer<Messages> _localizer = localizer;
|
||||
|
||||
public List<PostDataModel> GetAllPosts()
|
||||
{
|
||||
_logger.LogInformation("GetAllPosts");
|
||||
return _postStorageContract.GetList() ?? throw new NullListException();
|
||||
return _postStorageContract.GetList();
|
||||
}
|
||||
|
||||
public List<PostDataModel> GetAllDataOfPost(string postId)
|
||||
@@ -31,9 +31,22 @@ public class PostBusinessLogicContract(IPostStorageContract postStorageContract,
|
||||
}
|
||||
if (!postId.IsGuid())
|
||||
{
|
||||
throw new ValidationException("The value in the field postId is not a unique identifier.");
|
||||
throw new ValidationException(string.Format(_localizer["ValidationExceptionMessageNotAId"], "PostId"));
|
||||
}
|
||||
return _postStorageContract.GetPostWithHistory(postId) ?? throw new NullListException();
|
||||
return _postStorageContract.GetPostHistory(postId);
|
||||
}
|
||||
public List<PostDataModel> GetPostHistory(string postId)
|
||||
{
|
||||
_logger.LogInformation("GetPostHistory for {postId}", postId);
|
||||
if (postId.IsEmpty())
|
||||
{
|
||||
throw new ArgumentNullException(nameof(postId));
|
||||
}
|
||||
if (!postId.IsGuid())
|
||||
{
|
||||
throw new ValidationException(string.Format(_localizer["ValidationExceptionMessageNotAId"], "PostId"));
|
||||
}
|
||||
return _postStorageContract.GetPostHistory(postId);
|
||||
}
|
||||
|
||||
public PostDataModel GetPostByData(string data)
|
||||
@@ -45,16 +58,16 @@ public class PostBusinessLogicContract(IPostStorageContract postStorageContract,
|
||||
}
|
||||
if (data.IsGuid())
|
||||
{
|
||||
return _postStorageContract.GetElementById(data) ?? throw new ElementNotFoundException(data);
|
||||
return _postStorageContract.GetElementById(data) ?? throw new ElementNotFoundException(data, _localizer);
|
||||
}
|
||||
return _postStorageContract.GetElementByName(data) ?? throw new ElementNotFoundException(data);
|
||||
return _postStorageContract.GetElementByName(data) ?? throw new ElementNotFoundException(data, _localizer);
|
||||
}
|
||||
|
||||
public void InsertPost(PostDataModel postDataModel)
|
||||
{
|
||||
_logger.LogInformation("New data: {json}", JsonSerializer.Serialize(postDataModel));
|
||||
ArgumentNullException.ThrowIfNull(postDataModel);
|
||||
postDataModel.Validate();
|
||||
postDataModel.Validate(_localizer);
|
||||
_postStorageContract.AddElement(postDataModel);
|
||||
}
|
||||
|
||||
@@ -62,8 +75,8 @@ public class PostBusinessLogicContract(IPostStorageContract postStorageContract,
|
||||
{
|
||||
_logger.LogInformation("Update data: {json}", JsonSerializer.Serialize(postDataModel));
|
||||
ArgumentNullException.ThrowIfNull(postDataModel);
|
||||
postDataModel.Validate();
|
||||
_postStorageContract.UpdElement(postDataModel);
|
||||
postDataModel.Validate(_localizer);
|
||||
_postStorageContract.UpdateElement(postDataModel);
|
||||
}
|
||||
|
||||
public void DeletePost(string id)
|
||||
@@ -75,9 +88,9 @@ public class PostBusinessLogicContract(IPostStorageContract postStorageContract,
|
||||
}
|
||||
if (!id.IsGuid())
|
||||
{
|
||||
throw new ValidationException("Id is not a unique identifier");
|
||||
throw new ValidationException(string.Format(_localizer["ValidationExceptionMessageNotAId"], "Id"));
|
||||
}
|
||||
_postStorageContract.DelElement(id);
|
||||
_postStorageContract.DeleteElement(id);
|
||||
}
|
||||
|
||||
public void RestorePost(string id)
|
||||
@@ -89,8 +102,8 @@ public class PostBusinessLogicContract(IPostStorageContract postStorageContract,
|
||||
}
|
||||
if (!id.IsGuid())
|
||||
{
|
||||
throw new ValidationException("Id is not a unique identifier");
|
||||
throw new ValidationException(string.Format(_localizer["ValidationExceptionMessageNotAId"], "Id"));
|
||||
}
|
||||
_postStorageContract.ResElement(id);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,83 +1,126 @@
|
||||
using CandyHouseContracts.BuisnessLogicContracts;
|
||||
using CandyHouseContracts.BusinessLogicsContracts;
|
||||
using CandyHouseContracts.DataModels;
|
||||
using CandyHouseContracts.Exceptions;
|
||||
using CandyHouseContracts.Extensions;
|
||||
using CandyHouseContracts.StoragesContracts;
|
||||
using Microsoft.Extensions.Logging;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Text.Json;
|
||||
using System.Threading.Tasks;
|
||||
using Microsoft.Extensions.Localization;
|
||||
using CandyHouseContracts.Resources;
|
||||
using DocumentFormat.OpenXml.Office2010.Excel;
|
||||
|
||||
namespace CandyHouseBusinessLogic.Implementations;
|
||||
|
||||
public class ProductBusinessLogicContract(IProductStorageContract productStorageContract, ILogger logger) : IProductBusinessLogicContract
|
||||
/// <summary>
|
||||
/// Реализация бизнес-логики
|
||||
/// </summary>
|
||||
internal class ProductBusinessLogicContract : IProductBusinessLogicContract
|
||||
{
|
||||
private readonly ILogger _logger = logger;
|
||||
private readonly IProductStorageContract _productStorageContract = productStorageContract;
|
||||
public List<ProductDataModel> GetAllProducts()
|
||||
private readonly ILogger<ProductBusinessLogicContract> _logger;
|
||||
private readonly IProductStorageContract _productStorageContract;
|
||||
private readonly IStringLocalizer<Messages> _localizer;
|
||||
public ProductBusinessLogicContract(IProductStorageContract productStorage, IStringLocalizer<Messages> localizer, ILogger<ProductBusinessLogicContract> logger)
|
||||
{
|
||||
_logger.LogInformation("GetAllProducts");
|
||||
return _productStorageContract.GetList() ?? throw new NullListException();
|
||||
_logger = logger;
|
||||
_productStorageContract = productStorage;
|
||||
_localizer = localizer;
|
||||
}
|
||||
|
||||
public List<ProductHistoryDataModel> GetProductHistoryByProduct(string productId)
|
||||
public List<ProductDataModel> GetAllProducts(bool onlyActive = true)
|
||||
{
|
||||
_logger.LogInformation("GetProductHistoryByProduct for {productId}", productId);
|
||||
if (productId.IsEmpty())
|
||||
{
|
||||
throw new ArgumentNullException(nameof(productId));
|
||||
}
|
||||
if (!productId.IsGuid())
|
||||
{
|
||||
throw new ValidationException("The value in the field productId is not a unique identifier.");
|
||||
}
|
||||
return _productStorageContract.GetHistoryByProductId(productId) ?? throw new NullListException();
|
||||
_logger.LogInformation("Fetching all products with onlyActive={onlyActive}", onlyActive);
|
||||
return _productStorageContract.GetList(onlyActive: onlyActive);
|
||||
}
|
||||
|
||||
public ProductDataModel GetProductByData(string data)
|
||||
public ProductDataModel GetProductById(string id)
|
||||
{
|
||||
_logger.LogInformation("Get element by data: {data}", data);
|
||||
if (data.IsEmpty())
|
||||
{
|
||||
throw new ArgumentNullException(nameof(data));
|
||||
}
|
||||
if (data.IsGuid())
|
||||
{
|
||||
return _productStorageContract.GetElementById(data) ?? throw new ElementNotFoundException(data);
|
||||
}
|
||||
return _productStorageContract.GetElementByName(data) ?? throw new ElementNotFoundException(data);
|
||||
}
|
||||
|
||||
public void InsertProduct(ProductDataModel productDataModel)
|
||||
{
|
||||
_logger.LogInformation("New data: {json}", JsonSerializer.Serialize(productDataModel));
|
||||
ArgumentNullException.ThrowIfNull(productDataModel);
|
||||
productDataModel.Validate();
|
||||
_productStorageContract.AddElement(productDataModel);
|
||||
}
|
||||
|
||||
public void UpdateProduct(ProductDataModel productDataModel)
|
||||
{
|
||||
_logger.LogInformation("Update data: {json}", JsonSerializer.Serialize(productDataModel));
|
||||
ArgumentNullException.ThrowIfNull(productDataModel);
|
||||
productDataModel.Validate();
|
||||
_productStorageContract.UpdElement(productDataModel);
|
||||
}
|
||||
|
||||
public void DeleteProduct(string id)
|
||||
{
|
||||
_logger.LogInformation("Delete by id: {id}", id);
|
||||
_logger.LogInformation("Fetching sale product by id={id}", id);
|
||||
if (id.IsEmpty())
|
||||
{
|
||||
throw new ArgumentNullException(nameof(id));
|
||||
}
|
||||
if (!id.IsGuid())
|
||||
{
|
||||
throw new ValidationException("Id is not a unique identifier");
|
||||
throw new ValidationException(string.Format(_localizer["ValidationExceptionMessageNotAId"], "Id"));
|
||||
}
|
||||
_productStorageContract.DelElement(id);
|
||||
return _productStorageContract.GetElementById(id) ?? throw new ElementNotFoundException(id, _localizer);
|
||||
}
|
||||
}
|
||||
|
||||
public void InsertProduct(ProductDataModel productDataModel)
|
||||
{
|
||||
_logger.LogInformation("Inserting sale product: {json}", JsonSerializer.Serialize(productDataModel));
|
||||
ArgumentNullException.ThrowIfNull(productDataModel);
|
||||
productDataModel.Validate(_localizer);
|
||||
_productStorageContract.AddElement(productDataModel);
|
||||
}
|
||||
|
||||
public void UpdateProduct(ProductDataModel productDataModel)
|
||||
{
|
||||
_logger.LogInformation("Updating sale product: {json}", JsonSerializer.Serialize(productDataModel));
|
||||
ArgumentNullException.ThrowIfNull(productDataModel);
|
||||
productDataModel.Validate(_localizer);
|
||||
_productStorageContract.UpdateElement(productDataModel);
|
||||
}
|
||||
|
||||
public void DeleteProduct(string id)
|
||||
{
|
||||
_logger.LogInformation("Deleting sale product with id={id}", id);
|
||||
if (id.IsEmpty())
|
||||
{
|
||||
throw new ArgumentNullException(nameof(id));
|
||||
}
|
||||
if (!id.IsGuid())
|
||||
{
|
||||
throw new ValidationException(string.Format(_localizer["ValidationExceptionMessageNotAId"], "Id"));
|
||||
}
|
||||
_productStorageContract.DeleteElement(id);
|
||||
}
|
||||
|
||||
public List<ProductIngredientDataModel> GetIngredientsByProductId(string productId)
|
||||
{
|
||||
_logger.LogInformation("Fetching ingredients for sale product with id={saleProductId}", productId);
|
||||
if (productId.IsEmpty())
|
||||
{
|
||||
throw new ArgumentNullException(nameof(productId));
|
||||
}
|
||||
if (!productId.IsGuid())
|
||||
{
|
||||
throw new ValidationException(string.Format(_localizer["ValidationExceptionMessageNotAId"], "ProductId"));
|
||||
}
|
||||
return _productStorageContract.GetIngredientsByProductId(productId);
|
||||
}
|
||||
|
||||
public void AddIngredientToProduct(ProductIngredientDataModel productIngredient)
|
||||
{
|
||||
_logger.LogInformation("Adding ingredient to product: {json}", JsonSerializer.Serialize(productIngredient));
|
||||
ArgumentNullException.ThrowIfNull(productIngredient);
|
||||
productIngredient.Validate(_localizer);
|
||||
_productStorageContract.AddIngredientToProduct(productIngredient);
|
||||
}
|
||||
|
||||
public void RemoveIngredientFromProduct(string ingredientId, string productId)
|
||||
{
|
||||
_logger.LogInformation("Removing ingredient {ingredientId} from product {productId}", ingredientId, productId);
|
||||
if (ingredientId.IsEmpty())
|
||||
{
|
||||
throw new ArgumentNullException(nameof(ingredientId));
|
||||
}
|
||||
|
||||
if (!ingredientId.IsGuid())
|
||||
{
|
||||
throw new ValidationException(string.Format(_localizer["ValidationExceptionMessageNotAId"], "IngredientId"));
|
||||
}
|
||||
|
||||
if (productId.IsEmpty())
|
||||
{
|
||||
throw new ArgumentNullException(nameof(productId));
|
||||
}
|
||||
|
||||
if (!productId.IsGuid())
|
||||
{
|
||||
throw new ValidationException(string.Format(_localizer["ValidationExceptionMessageNotAId"], "ProductId"));
|
||||
}
|
||||
|
||||
_productStorageContract.RemoveIngredientFromProduct(ingredientId, productId);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,623 @@
|
||||
using DocumentFormat.OpenXml.Wordprocessing;
|
||||
using Microsoft.Extensions.Localization;
|
||||
using Microsoft.Extensions.Logging;
|
||||
using CandyHouseBusinessLogic.OfficePackage;
|
||||
using CandyHouseContracts.BusinessLogicsContracts;
|
||||
using CandyHouseContracts.DataModels;
|
||||
using CandyHouseContracts.Exceptions;
|
||||
using CandyHouseContracts.Extensions;
|
||||
using CandyHouseContracts.Resources;
|
||||
using CandyHouseContracts.StoragesContracts;
|
||||
using System.Globalization;
|
||||
|
||||
namespace CandyHouseBusinessLogic.Implementations;
|
||||
|
||||
internal class ReportContract : IReportContract
|
||||
{
|
||||
private readonly IIngredientStorageContract _ingredientStorageContract;
|
||||
|
||||
private readonly IStringLocalizer<Messages> _localizer;
|
||||
|
||||
private readonly ILogger _logger;
|
||||
|
||||
private readonly BaseWordBuilder _baseWordBuilder;
|
||||
|
||||
private readonly ISaleStorageContract _saleStorageContract;
|
||||
|
||||
private readonly ISalaryStorageContract _salaryStorageContract;
|
||||
|
||||
private readonly IStorageContract _storageContract;
|
||||
|
||||
private readonly ISupplyStorageContract _supplyStorageContract;
|
||||
|
||||
private readonly BaseExcelBuilder _baseExcelBuilder;
|
||||
|
||||
private readonly BasePdfBuilder _basePdfBuilder;
|
||||
|
||||
private readonly string[] _documentHeader;
|
||||
|
||||
private readonly string[] _tableHeader;
|
||||
|
||||
private readonly string[] _supplyTableHeader;
|
||||
|
||||
private readonly string[] _movementTableHeader;
|
||||
|
||||
private readonly string[] _stockTableHeader;
|
||||
|
||||
public ReportContract(IIngredientStorageContract ingredientStorageContract, ISaleStorageContract saleStorageContract, IProductStorageContract productStorageContract, ISalaryStorageContract salaryStorageContract, IStorageContract storageContract, ISupplyStorageContract supplyStorageContract, BaseWordBuilder baseWordBuilder, BaseExcelBuilder baseExcelBuilder, BasePdfBuilder basePdfBuilder, IStringLocalizer<Messages> localizer, ILogger logger)
|
||||
{
|
||||
_ingredientStorageContract = ingredientStorageContract;
|
||||
_localizer = localizer;
|
||||
_logger = logger;
|
||||
_baseWordBuilder = baseWordBuilder;
|
||||
_saleStorageContract = saleStorageContract;
|
||||
_salaryStorageContract = salaryStorageContract;
|
||||
_storageContract = storageContract;
|
||||
_supplyStorageContract = supplyStorageContract;
|
||||
_baseExcelBuilder = baseExcelBuilder;
|
||||
_basePdfBuilder = basePdfBuilder;
|
||||
_documentHeader = [_localizer["DocumentDocCaptionIngredient"], _localizer["DocumentDocCaptionIngredientHistory"], _localizer["DocumentDocCaptionOldPrice"]];
|
||||
_tableHeader = [_localizer["DocumentExcelCaptionDate"], _localizer["DocumentExcelCaptionSum"],
|
||||
_localizer["DocumentExcelCaptionDiscount"], _localizer["DocumentExcelCaptionWorker"], _localizer["DocumentExcelCaptionProduct"], _localizer["DocumentExcelCaptionCount"]];
|
||||
|
||||
_supplyTableHeader = [_localizer["DocumentDocSupplyCaptionDate"],
|
||||
_localizer["DocumentDocSupplyCaptionStorage"],
|
||||
_localizer["DocumentDocSupplyCaptionIngredient"],
|
||||
_localizer["DocumentDocSupplyCaptionCount"]
|
||||
];
|
||||
_movementTableHeader = [_localizer["DocumentExcelMovementCaptionDate"],
|
||||
_localizer["DocumentExcelMovementCaptionOperation"],
|
||||
_localizer["DocumentExcelMovementCaptionIngredient"],
|
||||
_localizer["DocumentExcelMovementCaptionCount"],
|
||||
_localizer["DocumentExcelMovementCaptionStorage"]
|
||||
];
|
||||
_stockTableHeader = [_localizer["DocumentPdfStockCaptionIngredient"],
|
||||
_localizer["DocumentPdfStockCaptionCount"]
|
||||
];
|
||||
}
|
||||
|
||||
public async Task<List<IngredientWithHistoryDataModel>> GetDataIngredientsWithHistoryAsync(CancellationToken ct)
|
||||
{
|
||||
_logger.LogInformation("Get data IngredientsWithHistory");
|
||||
return await GetDataByIngredientsAsync(ct);
|
||||
}
|
||||
|
||||
public async Task<Stream> CreateDocumentIngredientsWithHistoryAsync(CancellationToken ct)
|
||||
{
|
||||
_logger.LogInformation("Create report IngredientsWithHistory");
|
||||
|
||||
// Получаем данные
|
||||
var data = await GetDataIngredientsWithHistoryAsync(ct);
|
||||
if (!data.Any())
|
||||
{
|
||||
throw new InvalidOperationException(_localizer["NotFoundDataMessage"]);
|
||||
}
|
||||
|
||||
// Формируем строки таблицы
|
||||
var tableRows = new List<string[]>
|
||||
{
|
||||
_documentHeader // ["DocumentDocCaptionIngredient", "DocumentDocCaptionIngredientHistory", "DocumentDocCaptionOldPrice"]
|
||||
};
|
||||
|
||||
foreach (var ingredient in data.OrderBy(c => c.IngredientName))
|
||||
{
|
||||
if (ingredient.History.Any())
|
||||
{
|
||||
// Сортируем историю по убыванию даты
|
||||
var sortedHistory = ingredient.History.OrderByDescending(h => h.ChangeDate).ToList();
|
||||
|
||||
// Добавляем первую строку с названием комплектующей
|
||||
var firstHistory = sortedHistory.First();
|
||||
tableRows.Add(new[]
|
||||
{
|
||||
ingredient.IngredientName,
|
||||
firstHistory.ChangeDate.ToLocalTime().ToString("dd.MM.yyyy HH:mm:ss"),
|
||||
firstHistory.OldPrice.ToString("N2", CultureInfo.CurrentCulture)
|
||||
});
|
||||
|
||||
// Добавляем остальные записи истории
|
||||
foreach (var history in sortedHistory.Skip(1))
|
||||
{
|
||||
tableRows.Add(new[]
|
||||
{
|
||||
"", // Пустая ячейка для названия комплектующей
|
||||
history.ChangeDate.ToLocalTime().ToString("dd.MM.yyyy HH:mm:ss"),
|
||||
history.OldPrice.ToString("N2", CultureInfo.CurrentCulture)
|
||||
});
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
// Если истории нет, добавляем строку с локализованным текстом
|
||||
tableRows.Add(new[]
|
||||
{
|
||||
ingredient.IngredientName,
|
||||
_localizer["NotFoundDataMessage"], // Локализованный текст "Нет данных"
|
||||
"" // Пустая ячейка для старой цены
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
// Создаём документ с таблицей
|
||||
return _baseWordBuilder
|
||||
.AddHeader(_localizer["DocumentDocHeader"]) // "Продукты по производителям" или аналог
|
||||
.AddParagraph(string.Format(_localizer["DocumentDocSubHeader"], DateTime.Now.ToLocalTime().ToShortDateString()))
|
||||
.AddTable(new[] { 4000, 3000, 2000 }, tableRows) // Устанавливаем ширину колонок
|
||||
.Build();
|
||||
}
|
||||
|
||||
public async Task<Stream> CreateDocumentSalesByPeriodAsync(DateTime dateStart, DateTime dateFinish, CancellationToken ct)
|
||||
{
|
||||
_logger.LogInformation("Creating SalesByPeriod report from {DateStart} to {DateFinish}", dateStart, dateFinish);
|
||||
|
||||
var salesData = await GetDataBySalesAsync(dateStart, dateFinish, ct)
|
||||
?? throw new InvalidOperationException(_localizer["NotFoundDataMessage"]);
|
||||
|
||||
if (!salesData.Any())
|
||||
{
|
||||
_logger.LogInformation("No sales records found from {DateStart} to {DateFinish}", dateStart, dateFinish);
|
||||
throw new InvalidOperationException(_localizer["NotFoundDataMessage"]);
|
||||
}
|
||||
|
||||
var tableRows = new List<string[]>
|
||||
{
|
||||
_tableHeader // ["DocumentExcelCaptionDate", "DocumentExcelCaptionSum", ..., "DocumentExcelCaptionCount"]
|
||||
};
|
||||
|
||||
foreach (var sale in salesData)
|
||||
{
|
||||
if (sale.Product == null)
|
||||
{
|
||||
_logger.LogWarning("Product data missing for sale ID {SaleId}", sale.Id);
|
||||
continue;
|
||||
}
|
||||
|
||||
var productInfo = sale.Product;
|
||||
var productName = productInfo.ProductName;
|
||||
|
||||
tableRows.Add(new[]
|
||||
{
|
||||
sale.SaleDate.ToLocalTime().ToShortDateString(),
|
||||
sale.Sum.ToString("N2", CultureInfo.CurrentCulture),
|
||||
sale.Discount.ToString("N2", CultureInfo.CurrentCulture),
|
||||
sale.WorkerFIO ?? _localizer["NotFoundDataMessage"],
|
||||
productName,
|
||||
"1"
|
||||
});
|
||||
}
|
||||
|
||||
tableRows.Add(new[]
|
||||
{
|
||||
_localizer["DocumentExcelCaptionTotal"], // "Всего"
|
||||
salesData.Sum(x => x.Sum).ToString("N2", CultureInfo.CurrentCulture),
|
||||
salesData.Sum(x => x.Discount).ToString("N2", CultureInfo.CurrentCulture),
|
||||
"", "", ""
|
||||
});
|
||||
|
||||
return _baseExcelBuilder
|
||||
.AddHeader(_localizer["DocumentExcelHeader"], startIndex: 0, count: 6) // "Продажи за период"
|
||||
.AddParagraph(string.Format(_localizer["DocumentExcelSubHeader"], dateStart.ToLocalTime().ToShortDateString(), dateFinish.ToLocalTime().ToShortDateString()), columnIndex: 0)
|
||||
.AddTable(
|
||||
columnsWidths: new[] { 15, 10, 10, 20, 30, 10 },
|
||||
data: tableRows
|
||||
)
|
||||
.Build();
|
||||
}
|
||||
|
||||
public async Task<Stream> CreateDocumentSalaryByPeriodAsync(DateTime dateStart, DateTime dateFinish, CancellationToken ct)
|
||||
{
|
||||
_logger.LogInformation("Create report SalaryByPeriod from {dateStart} to {dateFinish}", dateStart, dateFinish);
|
||||
var data = await GetDataBySalaryAsync(dateStart, dateFinish, ct) ?? throw new InvalidOperationException(_localizer["NotFoundDataMessage"]);
|
||||
return _basePdfBuilder
|
||||
.AddHeader(_localizer["DocumentPdfHeader"]) // "Зарплатная ведомость"
|
||||
.AddParagraph(string.Format(_localizer["DocumentPdfSubHeader"], dateStart.ToLocalTime().ToShortDateString(), dateFinish.ToLocalTime().ToShortDateString()))
|
||||
.AddPieChart(_localizer["DocumentPdfDiagramCaption"], [.. data.Select(x => (x.WorkerFIO, x.TotalSalary))]) // "Начисления"
|
||||
.Build();
|
||||
}
|
||||
|
||||
public Task<List<SaleDataModel>> GetDataSaleByPeriodAsync(DateTime dateStart, DateTime dateFinish, CancellationToken ct)
|
||||
{
|
||||
_logger.LogInformation("Get data SalesByPeriod from {dateStart} to {dateFinish}", dateStart, dateFinish);
|
||||
return GetDataBySalesAsync(dateStart, dateFinish, ct);
|
||||
}
|
||||
|
||||
public Task<List<WorkerSalaryByPeriodDataModel>> GetDataSalaryByPeriodAsync(DateTime dateStart, DateTime dateFinish, CancellationToken ct)
|
||||
{
|
||||
_logger.LogInformation("Get data SalaryByPeriod from {dateStart} to {dateFinish}", dateStart, dateFinish);
|
||||
return GetDataBySalaryAsync(dateStart, dateFinish, ct);
|
||||
}
|
||||
|
||||
private async Task<List<IngredientWithHistoryDataModel>> GetDataByIngredientsAsync(CancellationToken ct)
|
||||
{
|
||||
_logger.LogInformation("Starting GetDataByIngredientsAsync");
|
||||
|
||||
// Получаем все комплектующие
|
||||
var ingredients = await _ingredientStorageContract.GetListAsync(ct);
|
||||
_logger.LogInformation("Retrieved {Count} ingredients from storage", ingredients.Count);
|
||||
|
||||
// Формируем список комплектующих с их историей (последовательно)
|
||||
var result = new List<IngredientWithHistoryDataModel>();
|
||||
foreach (var ingredient in ingredients)
|
||||
{
|
||||
_logger.LogInformation("Processing ingredient {IngredientName} with ID {IngredientId}", ingredient.IngredientName, ingredient.Id);
|
||||
|
||||
// Получаем историю изменений для текущей комплектующей асинхронно
|
||||
var history = await _ingredientStorageContract.GetHistoryByIngredientIdAsync(ingredient.Id, ct);
|
||||
_logger.LogInformation("Retrieved {HistoryCount} history records for ingredient {IngredientName}", history.Count, ingredient.IngredientName);
|
||||
|
||||
// Логируем данные, которые передаём в IngredientWithHistoryDataModel
|
||||
_logger.LogInformation("Creating IngredientWithHistoryDataModel for {IngredientName}. ManufacturerName: {ManufacturerName}, CurrentPrice: {Price}, History is null: {HistoryIsNull}",
|
||||
ingredient.IngredientName, ingredient.ManufacturerName, ingredient.Price, history == null);
|
||||
|
||||
// Создаём объект для отчёта
|
||||
var ingredientWithHistory = new IngredientWithHistoryDataModel(
|
||||
ingredientName: ingredient.IngredientName,
|
||||
currentPrice: ingredient.Price,
|
||||
manufacturerName: ingredient.ManufacturerName,
|
||||
history: history
|
||||
);
|
||||
|
||||
// Вызываем валидацию
|
||||
try
|
||||
{
|
||||
ingredientWithHistory.Validate(_localizer);
|
||||
_logger.LogInformation("Validation passed for ingredient {IngredientName}", ingredient.IngredientName);
|
||||
}
|
||||
catch (ValidationException ex)
|
||||
{
|
||||
_logger.LogError(ex, "Validation failed for ingredient {IngredientName}: {Message}", ingredient.IngredientName, ex.Message);
|
||||
throw;
|
||||
}
|
||||
|
||||
result.Add(ingredientWithHistory);
|
||||
}
|
||||
|
||||
_logger.LogInformation("All ingredients processed, {Count} ingredients processed", result.Count);
|
||||
|
||||
return result.OrderBy(x => x.IngredientName).ToList();
|
||||
}
|
||||
|
||||
private async Task<List<SaleDataModel>> GetDataBySalesAsync(DateTime dateStart, DateTime dateFinish, CancellationToken ct)
|
||||
{
|
||||
if (dateStart.IsDateNotOlder(dateFinish))
|
||||
{
|
||||
throw new IncorrectDatesException(dateStart, dateFinish, _localizer);
|
||||
}
|
||||
return [.. (await _saleStorageContract.GetListAsync(dateStart, dateFinish, ct)).OrderBy(x => x.SaleDate)];
|
||||
}
|
||||
|
||||
private async Task<List<WorkerSalaryByPeriodDataModel>> GetDataBySalaryAsync(DateTime dateStart, DateTime dateFinish, CancellationToken ct)
|
||||
{
|
||||
if (dateStart.IsDateNotOlder(dateFinish))
|
||||
{
|
||||
throw new IncorrectDatesException(dateStart, dateFinish, _localizer);
|
||||
}
|
||||
return (await _salaryStorageContract.GetListAsync(dateStart, dateFinish, ct))
|
||||
.GroupBy(x => x.WorkerId)
|
||||
.Select(x => new WorkerSalaryByPeriodDataModel
|
||||
{
|
||||
WorkerFIO = x.First().WorkerFIO,
|
||||
TotalSalary = x.Sum(y => y.Salary),
|
||||
FromPeriod = x.Min(y => y.SalaryDate),
|
||||
ToPeriod = x.Max(y => y.SalaryDate)
|
||||
})
|
||||
.OrderBy(x => x.WorkerFIO)
|
||||
.ToList();
|
||||
}
|
||||
|
||||
public async Task<List<SupplyInformationDataModel>> GetDataSupplyAsync(DateTime dateStart, DateTime dateFinish, CancellationToken ct)
|
||||
{
|
||||
_logger.LogInformation("Get data Supply from {dateStart} to {dateFinish}", dateStart, dateFinish);
|
||||
if (dateStart.IsDateNotOlder(dateFinish))
|
||||
{
|
||||
_logger.LogError("Invalid date range: start date {DateStart} is not older than finish date {DateFinish}", dateStart, dateFinish);
|
||||
throw new IncorrectDatesException(dateStart, dateFinish, _localizer);
|
||||
}
|
||||
var supplies = await _supplyStorageContract.GetListAsync(dateStart, dateFinish, ct);
|
||||
var result = new List<SupplyInformationDataModel>();
|
||||
if (supplies != null)
|
||||
{
|
||||
foreach (var supply in supplies)
|
||||
{
|
||||
var supplyInfo = new SupplyInformationDataModel
|
||||
{
|
||||
SupplyId = supply.Id,
|
||||
SupplyDate = supply.DeliveryDate,
|
||||
StorageId = supply.StorageId,
|
||||
Ingredients = supply.Ingredients.Select(c => new SupplyIngredientReportDataModel(
|
||||
supplyId: c.SupplyId,
|
||||
ingredientId: c.IngredientId,
|
||||
count: c.Count
|
||||
)).ToList()
|
||||
};
|
||||
|
||||
try
|
||||
{
|
||||
supplyInfo.Validate(_localizer);
|
||||
_logger.LogInformation("Validation passed for supply {SupplyId}", supplyInfo.SupplyId);
|
||||
}
|
||||
catch (ValidationException ex)
|
||||
{
|
||||
_logger.LogError(ex, "Validation failed for supply {SupplyId}: {Message}", supplyInfo.SupplyId, ex.Message);
|
||||
throw;
|
||||
}
|
||||
|
||||
result.Add(supplyInfo);
|
||||
}
|
||||
}
|
||||
return result.OrderBy(x => x.SupplyDate).ToList();
|
||||
}
|
||||
|
||||
public async Task<Stream> CreateDocumentSupplyAsync(DateTime dateStart, DateTime dateFinish, CancellationToken ct)
|
||||
{
|
||||
_logger.LogInformation("Create report Supply from {dateStart} to {dateFinish}", dateStart, dateFinish);
|
||||
var supplies = await GetDataSupplyAsync(dateStart, dateFinish, ct)
|
||||
?? throw new InvalidOperationException(_localizer["NotFoundDataMessage"]);
|
||||
if (!supplies.Any())
|
||||
{
|
||||
_logger.LogInformation("No supply records found from {dateStart} to {dateFinish}", dateStart, dateFinish);
|
||||
throw new InvalidOperationException(_localizer["NotFoundDataMessage"]);
|
||||
}
|
||||
|
||||
var tableRows = new List<string[]>
|
||||
{
|
||||
_supplyTableHeader // ["DocumentDocSupplyCaptionDate", "DocumentDocSupplyCaptionStorage", "DocumentDocSupplyCaptionIngredient", "DocumentDocSupplyCaptionCount"]
|
||||
};
|
||||
|
||||
// Группируем комплектующие по поставкам
|
||||
var groupedSupplies = supplies
|
||||
.OrderBy(s => s.SupplyDate)
|
||||
.GroupBy(s => new { s.SupplyId, s.SupplyDate, s.StorageId })
|
||||
.ToList();
|
||||
|
||||
for (int groupIndex = 0; groupIndex < groupedSupplies.Count; groupIndex++)
|
||||
{
|
||||
var group = groupedSupplies[groupIndex];
|
||||
var supply = group.First();
|
||||
var storage = await _storageContract.GetByIdAsync(supply.StorageId, ct);
|
||||
if (storage == null)
|
||||
{
|
||||
_logger.LogWarning("Storage with ID {StorageId} not found for supply {SupplyId}", supply.StorageId, supply.SupplyId);
|
||||
}
|
||||
|
||||
// Получаем все комплектующие для данной поставки
|
||||
var ingredients = group.SelectMany(s => s.Ingredients).ToList();
|
||||
for (int i = 0; i < ingredients.Count; i++)
|
||||
{
|
||||
var ingredient = ingredients[i];
|
||||
var comp = await _ingredientStorageContract.GetElementByIdAsync(ingredient.IngredientId, ct);
|
||||
if (comp == null)
|
||||
{
|
||||
_logger.LogWarning("Ingredient with ID {IngredientId} not found for supply {SupplyId}", ingredient.IngredientId, supply.SupplyId);
|
||||
}
|
||||
|
||||
// Если это первая строка для данной поставки, показываем дату и склад
|
||||
// Для остальных строк оставляем эти колонки пустыми
|
||||
string dateCell = i == 0 ? supply.SupplyDate.ToLocalTime().ToString("d", CultureInfo.CurrentCulture) : "";
|
||||
string storageCell = i == 0 ? (storage?.Address ?? _localizer["NotFoundDataMessage"]) : "";
|
||||
|
||||
tableRows.Add(new[]
|
||||
{
|
||||
dateCell,
|
||||
storageCell,
|
||||
comp?.IngredientName ?? ingredient.IngredientId,
|
||||
ingredient.Count.ToString()
|
||||
});
|
||||
}
|
||||
|
||||
// Добавляем пустую строку как разделитель между поставками (если это не последняя поставка)
|
||||
if (groupIndex < groupedSupplies.Count - 1)
|
||||
{
|
||||
tableRows.Add(new[] { "", "", "", "" });
|
||||
}
|
||||
}
|
||||
|
||||
// Добавляем итоговую строку
|
||||
tableRows.Add(new[]
|
||||
{
|
||||
_localizer["DocumentExcelCaptionTotal"], // "Итого"
|
||||
"",
|
||||
"",
|
||||
supplies.Sum(s => s.Ingredients.Sum(c => c.Count)).ToString()
|
||||
});
|
||||
|
||||
return _baseWordBuilder
|
||||
.AddHeader(_localizer["DocumentSupplyHeader"]) // "Отчёт по поставке"
|
||||
.AddParagraph(string.Format(_localizer["DocumentSupplySubHeader"], dateStart.ToLocalTime().ToString("d", CultureInfo.CurrentCulture), dateFinish.ToLocalTime().ToString("d", CultureInfo.CurrentCulture)))
|
||||
.AddTable(new[] { 2000, 2000, 3000, 1500 }, tableRows)
|
||||
.Build();
|
||||
}
|
||||
|
||||
public async Task<List<IngredientMoveDataModel>> GetDataIngredientMovementAsync(DateTime dateStart, DateTime dateFinish, CancellationToken ct)
|
||||
{
|
||||
_logger.LogInformation("Get data IngredientMovement from {dateStart} to {dateFinish}", dateStart, dateFinish);
|
||||
if (dateStart.IsDateNotOlder(dateFinish))
|
||||
{
|
||||
_logger.LogError("Invalid date range: start date {DateStart} is not older than finish date {DateFinish}", dateStart, dateFinish);
|
||||
throw new IncorrectDatesException(dateStart, dateFinish, _localizer);
|
||||
}
|
||||
var movements = new List<IngredientMoveDataModel>();
|
||||
|
||||
// Получаем поставки
|
||||
var supplies = await _supplyStorageContract.GetListAsync(dateStart, dateFinish, ct);
|
||||
if (supplies != null)
|
||||
{
|
||||
foreach (var supply in supplies)
|
||||
{
|
||||
foreach (var ingredient in supply.Ingredients)
|
||||
{
|
||||
var comp = await _ingredientStorageContract.GetElementByIdAsync(ingredient.IngredientId, ct);
|
||||
if (comp == null)
|
||||
{
|
||||
_logger.LogWarning("Ingredient with ID {IngredientId} not found for supply {SupplyId}", ingredient.IngredientId, supply.Id);
|
||||
}
|
||||
movements.Add(new IngredientMoveDataModel
|
||||
{
|
||||
Date = supply.DeliveryDate,
|
||||
OperationType = _localizer["DocumentMovementOperationArrival"].Value, // "Приход"
|
||||
IngredientId = ingredient.IngredientId,
|
||||
IngredientName = comp?.IngredientName ?? ingredient.IngredientId,
|
||||
Count = ingredient.Count,
|
||||
StorageId = supply.StorageId
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Получаем продажи
|
||||
var sales = await _saleStorageContract.GetListAsync(dateStart, dateFinish, ct);
|
||||
if (sales != null)
|
||||
{
|
||||
foreach (var sale in sales)
|
||||
{
|
||||
if (sale.Product?.Ingredients != null)
|
||||
{
|
||||
foreach (var ingredient in sale.Product.Ingredients)
|
||||
{
|
||||
var comp = await _ingredientStorageContract.GetElementByIdAsync(ingredient.IngredientId, ct);
|
||||
if (comp == null)
|
||||
{
|
||||
_logger.LogWarning("Ingredient with ID {IngredientId} not found for sale {SaleId}", ingredient.IngredientId, sale.Id);
|
||||
}
|
||||
movements.Add(new IngredientMoveDataModel
|
||||
{
|
||||
Date = sale.SaleDate,
|
||||
OperationType = _localizer["DocumentMovementOperationDeparture"].Value, // "Уход"
|
||||
IngredientId = ingredient.IngredientId,
|
||||
IngredientName = comp?.IngredientName ?? ingredient.IngredientId,
|
||||
Count = ingredient.Count,
|
||||
StorageId = null
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return movements.OrderBy(m => m.Date).ToList();
|
||||
}
|
||||
|
||||
public async Task<Stream> CreateDocumentIngredientMovementAsync(DateTime dateStart, DateTime dateFinish, CancellationToken ct)
|
||||
{
|
||||
_logger.LogInformation("Create report IngredientMovement from {dateStart} to {dateFinish}", dateStart, dateFinish);
|
||||
var movements = await GetDataIngredientMovementAsync(dateStart, dateFinish, ct)
|
||||
?? throw new InvalidOperationException(_localizer["NotFoundDataMessage"]);
|
||||
if (!movements.Any())
|
||||
{
|
||||
_logger.LogInformation("No movement records found from {dateStart} to {dateFinish}", dateStart, dateFinish);
|
||||
throw new InvalidOperationException(_localizer["NotFoundDataMessage"]);
|
||||
}
|
||||
|
||||
// Логируем содержимое movements
|
||||
_logger.LogInformation("Found {Count} movements", movements.Count);
|
||||
foreach (var movement in movements)
|
||||
{
|
||||
_logger.LogInformation("Movement: Date={Date}, OperationType={OperationType}, IngredientId={IngredientId}, IngredientName={IngredientName}, Count={Count}, StorageId={StorageId}",
|
||||
movement.Date, movement.OperationType, movement.IngredientId, movement.IngredientName, movement.Count, movement.StorageId);
|
||||
}
|
||||
|
||||
var tableRows = new List<string[]>
|
||||
{
|
||||
_movementTableHeader // // ["DocumentExcelMovementCaptionDate", "DocumentExcelMovementCaptionOperation", "DocumentExcelMovementCaptionIngredient", "DocumentExcelMovementCaptionCount", "DocumentExcelMovementCaptionStorage"]
|
||||
};
|
||||
|
||||
foreach (var movement in movements)
|
||||
{
|
||||
var storage = movement.StorageId != null ? await _storageContract.GetByIdAsync(movement.StorageId, ct) : null;
|
||||
if (storage == null && movement.StorageId != null)
|
||||
{
|
||||
_logger.LogWarning("Storage with ID {StorageId} not found for movement of ingredient {IngredientId}", movement.StorageId, movement.IngredientId);
|
||||
}
|
||||
tableRows.Add(new[]
|
||||
{
|
||||
movement.Date.ToLocalTime().ToString("d", CultureInfo.CurrentCulture),
|
||||
movement.OperationType, // "Приход" или "Уход" (локализуется в данных)
|
||||
movement.IngredientName,
|
||||
movement.Count.ToString(),
|
||||
storage?.Address ?? _localizer["NotFoundDataMessage"]
|
||||
});
|
||||
}
|
||||
|
||||
// Вычисляем остаток: приходы увеличивают, уходы уменьшают
|
||||
var totalBalance = movements
|
||||
.Sum(m => m.OperationType == _localizer["DocumentMovementOperationArrival"].Value ? m.Count : -m.Count);
|
||||
|
||||
if (totalBalance < 0)
|
||||
{
|
||||
_logger.LogWarning("Negative balance detected: {TotalBalance}. Possible data inconsistency.", totalBalance);
|
||||
throw new InvalidOperationException(_localizer["NegativeBalanceMessage"]);
|
||||
}
|
||||
|
||||
tableRows.Add(new[]
|
||||
{
|
||||
_localizer["DocumentMovementCaptionTotal"], // "Итого (остаток)"
|
||||
"",
|
||||
"",
|
||||
totalBalance.ToString(),
|
||||
""
|
||||
});
|
||||
|
||||
// Логируем содержимое tableRows
|
||||
_logger.LogInformation("Table rows count: {Count}", tableRows.Count);
|
||||
foreach (var row in tableRows)
|
||||
{
|
||||
_logger.LogInformation("Row: {Row}", string.Join(", ", row));
|
||||
}
|
||||
|
||||
return _baseExcelBuilder
|
||||
.AddHeader(_localizer["DocumentMovementHeader"], 0, 5) // "Движение комплектующих"
|
||||
.AddParagraph(string.Format(_localizer["DocumentMovementSubHeader"], dateStart.ToLocalTime().ToString("d", CultureInfo.CurrentCulture), dateFinish.ToLocalTime().ToString("d", CultureInfo.CurrentCulture)), 0)
|
||||
.AddTable(new[] { 15, 15, 25, 10, 20 }, tableRows)
|
||||
.Build();
|
||||
}
|
||||
|
||||
public async Task<List<StorageIngredientDataModel>> GetDataStorageStockAsync(string storageId, CancellationToken ct)
|
||||
{
|
||||
_logger.LogInformation("Get data StorageStock for storage {storageId}", storageId);
|
||||
var ingredients = await _storageContract.GetIngredientsOnStorageAsync(storageId, ct);
|
||||
return ingredients?.OrderBy(c => c.IngredientId).ToList() ?? new List<StorageIngredientDataModel>();
|
||||
}
|
||||
|
||||
public async Task<Stream> CreateDocumentStorageStockAsync(string storageId, CancellationToken ct)
|
||||
{
|
||||
_logger.LogInformation("Create report StorageStock for storage {storageId}", storageId);
|
||||
var ingredients = await GetDataStorageStockAsync(storageId, ct)
|
||||
?? throw new InvalidOperationException(_localizer["NotFoundDataMessage"]);
|
||||
if (!ingredients.Any())
|
||||
{
|
||||
_logger.LogInformation("No stock records found for storage {storageId}", storageId);
|
||||
throw new InvalidOperationException(_localizer["NotFoundDataMessage"]);
|
||||
}
|
||||
var storage = await _storageContract.GetByIdAsync(storageId, ct);
|
||||
if (storage == null)
|
||||
{
|
||||
_logger.LogWarning("Storage with ID {StorageId} not found", storageId);
|
||||
}
|
||||
|
||||
// Предварительно загружаем все компоненты для оптимизации
|
||||
var ingredientIds = ingredients.Select(c => c.IngredientId).Distinct().ToList();
|
||||
var ingredientDict = new Dictionary<string, IngredientDataModel>();
|
||||
foreach (var ingredientId in ingredientIds)
|
||||
{
|
||||
var comp = await _ingredientStorageContract.GetElementByIdAsync(ingredientId, ct);
|
||||
if (comp != null)
|
||||
{
|
||||
ingredientDict[ingredientId] = comp;
|
||||
}
|
||||
else
|
||||
{
|
||||
_logger.LogWarning("Ingredient with ID {IngredientId} not found for storage {StorageId}", ingredientId, storageId);
|
||||
}
|
||||
}
|
||||
|
||||
var chartData = ingredients.Select(c => (
|
||||
ingredientDict.TryGetValue(c.IngredientId, out var comp) ? comp.IngredientName : c.IngredientId,
|
||||
(double)c.Count
|
||||
)).ToList();
|
||||
|
||||
return _basePdfBuilder
|
||||
.AddHeader(_localizer["DocumentStockHeader"]) // "Комплектующие на складе"
|
||||
.AddParagraph(string.Format(_localizer["DocumentStockSubHeader"], storage?.Address ?? _localizer["NotFoundDataMessage"]))
|
||||
.AddPieChart(_localizer["DocumentStockChartCaption"], chartData) // "Количество комплектующих"
|
||||
.Build();
|
||||
}
|
||||
}
|
||||
@@ -1,67 +1,148 @@
|
||||
using CandyHouseContracts.BuisnessLogicContracts;
|
||||
using CandyHouseContracts.BusinessLogicsContracts;
|
||||
using CandyHouseContracts.DataModels;
|
||||
using CandyHouseContracts.Exceptions;
|
||||
using CandyHouseContracts.Extensions;
|
||||
using CandyHouseContracts.StoragesContracts;
|
||||
using Microsoft.Extensions.Logging;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using CandyHouseContracts.Infrastructure;
|
||||
using CandyHouseContracts.Infrastructure.PostConfigurations;
|
||||
using Microsoft.Extensions.Localization;
|
||||
using CandyHouseContracts.Resources;
|
||||
|
||||
namespace CandyHouseBusinessLogic.Implementations;
|
||||
public class SalaryBusinessLogicContract(ISalaryStorageContract salaryStorageContract,ISaleStorageContract saleStorageContract,
|
||||
IPostStorageContract postStorageContract, IEmployeeStorageContract employeeStorageContract, ILogger logger) : ISalaryBusinessLogicContract
|
||||
internal class SalaryBusinessLogicContract(ISalaryStorageContract salaryStorageContract, ISaleStorageContract saleStorageContract, IPostStorageContract postStorageContract, IWorkerStorageContract workerStorageContract, IStringLocalizer<Messages> localizer, ILogger logger, IConfigurationSalary сonfiguration) : ISalaryBusinessLogicContract
|
||||
{
|
||||
private readonly ILogger _logger = logger;
|
||||
private readonly ISalaryStorageContract _salaryStorageContract = salaryStorageContract;
|
||||
private readonly ISaleStorageContract _saleStorageContract = saleStorageContract;
|
||||
private readonly IPostStorageContract _postStorageContract = postStorageContract;
|
||||
private readonly IEmployeeStorageContract _employeeStorageContract = employeeStorageContract;
|
||||
private readonly IWorkerStorageContract _workerStorageContract = workerStorageContract;
|
||||
private readonly IConfigurationSalary _salaryConfiguration = сonfiguration;
|
||||
private readonly IStringLocalizer<Messages> _localizer = localizer;
|
||||
private readonly object _lockObject = new();
|
||||
|
||||
public List<SalaryDataModel> GetAllSalariesByPeriod(DateTime fromDate, DateTime toDate)
|
||||
{
|
||||
_logger.LogInformation("GetAllSalaries params: {fromDate}, {toDate}", fromDate, toDate);
|
||||
_logger.LogInformation("GetAllSalaries params: {fromDate}, {toDate}",
|
||||
fromDate, toDate);
|
||||
if (fromDate.IsDateNotOlder(toDate))
|
||||
{
|
||||
throw new IncorrectDatesException(fromDate, toDate);
|
||||
throw new IncorrectDatesException(fromDate, toDate, _localizer);
|
||||
}
|
||||
return _salaryStorageContract.GetList(fromDate, toDate) ?? throw new NullListException();
|
||||
return _salaryStorageContract.GetList(fromDate, toDate);
|
||||
}
|
||||
|
||||
public List<SalaryDataModel> GetAllSalariesByPeriodByEmployee(DateTime fromDate, DateTime toDate, string employeeId)
|
||||
public List<SalaryDataModel> GetAllSalariesByPeriodByWorker(DateTime fromDate, DateTime toDate, string workerId)
|
||||
{
|
||||
if (fromDate.IsDateNotOlder(toDate))
|
||||
var fromUtc = fromDate.ToUniversalTime();
|
||||
var toUtc = toDate.ToUniversalTime();
|
||||
if (fromUtc.IsDateNotOlder(toUtc))
|
||||
{
|
||||
throw new IncorrectDatesException(fromDate, toDate);
|
||||
throw new IncorrectDatesException(fromUtc, toUtc, _localizer);
|
||||
}
|
||||
if (employeeId.IsEmpty())
|
||||
if (workerId.IsEmpty())
|
||||
{
|
||||
throw new ArgumentNullException(nameof(employeeId));
|
||||
throw new ArgumentNullException(nameof(workerId));
|
||||
}
|
||||
if (!employeeId.IsGuid())
|
||||
if (!workerId.IsGuid())
|
||||
{
|
||||
throw new ValidationException("The value in the field employeeId is not a unique identifier.");
|
||||
throw new ValidationException(string.Format(_localizer["ValidationExceptionMessageNotAId"], "WorkerId"));
|
||||
}
|
||||
_logger.LogInformation("GetAllSalaries params: {fromDate}, {toDate}, {employeeId}", fromDate, toDate, employeeId);
|
||||
return _salaryStorageContract.GetList(fromDate, toDate, employeeId) ?? throw new NullListException();
|
||||
_logger.LogInformation("GetAllSalaries params: {fromDate}, {toDate}, {workerId}", fromUtc, toUtc, workerId);
|
||||
return _salaryStorageContract.GetList(fromUtc, toUtc, workerId);
|
||||
}
|
||||
|
||||
public void CalculateSalaryByMounth(DateTime date)
|
||||
public void CalculateSalaryByMonth(DateTime date)
|
||||
{
|
||||
_logger.LogInformation("CalculateSalaryByMounth: {date}", date);
|
||||
var startDate = new DateTime(date.Year, date.Month, 1);
|
||||
var finishDate = new DateTime(date.Year, date.Month, DateTime.DaysInMonth(date.Year, date.Month));
|
||||
var employees = _employeeStorageContract.GetList() ?? throw new NullListException();
|
||||
foreach (var employee in employees)
|
||||
var startDate = new DateTime(date.Year, date.Month, 1, 0, 0, 0, DateTimeKind.Utc);
|
||||
var finishDate = new DateTime(date.Year, date.Month, DateTime.DaysInMonth(date.Year, date.Month), 23, 59, 59, 999, DateTimeKind.Utc);
|
||||
var workers = _workerStorageContract.GetList();
|
||||
foreach (var worker in workers)
|
||||
{
|
||||
var sales = _saleStorageContract.GetList(startDate, finishDate, employeeId: employee.Id)?.Sum(x => x.Sum) ??
|
||||
throw new NullListException();
|
||||
var post = _postStorageContract.GetElementById(employee.PostId) ??
|
||||
throw new NullListException();
|
||||
var salary = post.Salary + sales * 0.1;
|
||||
_logger.LogDebug("The employee {employeeId} was paid a salary of {salary}", employee.Id, salary);
|
||||
_salaryStorageContract.AddElement(new SalaryDataModel(employee.Id, DateTime.SpecifyKind(finishDate, DateTimeKind.Utc), salary));
|
||||
var sales = _saleStorageContract.GetList(startDate, finishDate, workerId: worker.Id);
|
||||
var post = _postStorageContract.GetElementById(worker.PostId);
|
||||
if (post == null)
|
||||
{
|
||||
_logger.LogError("Post with ID {PostId} not found for worker {WorkerId}", worker.PostId, worker.Id);
|
||||
throw new ElementNotFoundException(worker.PostId, _localizer);
|
||||
}
|
||||
var salary = post.ConfigurationModel switch
|
||||
{
|
||||
null => 0,
|
||||
CashierPostConfiguration cpc => CalculateSalaryForCashier(sales, startDate, finishDate, cpc),
|
||||
SupervisorPostConfiguration spc => CalculateSalaryForSupervisor(startDate, finishDate, spc),
|
||||
PostConfiguration pc => pc.Rate,
|
||||
};
|
||||
_logger.LogDebug("The employee {workerId} was paid a salary of {salary}", worker.Id, salary);
|
||||
_salaryStorageContract.AddElement(new SalaryDataModel(worker.Id, finishDate, salary));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private double CalculateSalaryForCashier(List<SaleDataModel> sales, DateTime startDate, DateTime finishDate, CashierPostConfiguration config)
|
||||
{
|
||||
var tasks = new List<Task>();
|
||||
var calcPercent = 0.0;
|
||||
var semaphore = new SemaphoreSlim(_salaryConfiguration.MaxConcurrentThreads); // Ограничение потоков
|
||||
|
||||
// Создаём задачи для каждого дня
|
||||
for (var date = startDate; date <= finishDate; date = date.AddDays(1))
|
||||
{
|
||||
var currentDate = date; // Сохраняем дату для каждой задачи
|
||||
tasks.Add(Task.Run(async () =>
|
||||
{
|
||||
await semaphore.WaitAsync(); // Ждём доступный слот
|
||||
try
|
||||
{
|
||||
var salesInDay = sales.Where(x => x.SaleDate.Date == currentDate.Date && !x.IsCancel).ToArray();
|
||||
if (salesInDay.Length > 0)
|
||||
{
|
||||
lock (_lockObject)
|
||||
{
|
||||
calcPercent += (salesInDay.Sum(x => x.Sum) / salesInDay.Length) * _salaryConfiguration.CashierSalePercent;
|
||||
}
|
||||
}
|
||||
}
|
||||
finally
|
||||
{
|
||||
semaphore.Release(); // Освобождаем слот
|
||||
}
|
||||
}));
|
||||
}
|
||||
|
||||
// Расчёт бонуса в отдельной задаче
|
||||
var calcBonusTask = Task.Run(() =>
|
||||
{
|
||||
return sales.Where(x => x.Sum > _salaryConfiguration.ExtraSaleSum && !x.IsCancel)
|
||||
.Sum(x => x.Sum) * _salaryConfiguration.CashierBonusForExtraSales;
|
||||
});
|
||||
|
||||
try
|
||||
{
|
||||
Task.WaitAll(tasks.ToArray()); // Ждём завершения всех задач для процентов
|
||||
var bonus = calcBonusTask.Result; // Получаем результат бонуса
|
||||
return config.Rate + calcPercent + bonus;
|
||||
}
|
||||
catch (AggregateException agEx)
|
||||
{
|
||||
foreach (var ex in agEx.InnerExceptions)
|
||||
{
|
||||
_logger.LogError(ex, "Error in the cashier payroll process");
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
private double CalculateSalaryForSupervisor(DateTime startDate, DateTime finishDate, SupervisorPostConfiguration config)
|
||||
{
|
||||
try
|
||||
{
|
||||
return config.Rate + _salaryConfiguration.SupervisorTrendPremium * _workerStorageContract.GetWorkerTrend(startDate, finishDate); // Из глобальных настроек
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
_logger.LogError(ex, "Error in the supervisor payroll process");
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,68 +1,67 @@
|
||||
using CandyHouseContracts.BuisnessLogicContracts;
|
||||
using Microsoft.Extensions.Localization;
|
||||
using Microsoft.Extensions.Logging;
|
||||
using CandyHouseContracts.BusinessLogicsContracts;
|
||||
using CandyHouseContracts.DataModels;
|
||||
using CandyHouseContracts.Exceptions;
|
||||
using CandyHouseContracts.Extensions;
|
||||
using CandyHouseContracts.Resources;
|
||||
using CandyHouseContracts.StoragesContracts;
|
||||
using Microsoft.Extensions.Logging;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Text.Json;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace CandyHouseBusinessLogic.Implementations;
|
||||
|
||||
public class SaleBusinessLogicContract(ISaleStorageContract saleStorageContract,IStorageStorageContract storageStorageContract, ILogger logger) : ISaleBusinessLogicContract
|
||||
{
|
||||
internal class SaleBusinessLogicContract(ISaleStorageContract saleStorageContract, IStorageContract storageStorageContract, IStringLocalizer<Messages> localizer, ILogger logger) : ISaleBusinessLogicContract{
|
||||
private readonly ILogger _logger = logger;
|
||||
private readonly ISaleStorageContract _saleStorageContract = saleStorageContract;
|
||||
private readonly IStorageStorageContract _storageStorageContract = storageStorageContract;
|
||||
private readonly IStorageContract _storageStorageContract = storageStorageContract;
|
||||
private readonly IStringLocalizer<Messages> _localizer = localizer;
|
||||
|
||||
public List<SaleDataModel> GetAllSalesByPeriod(DateTime fromDate, DateTime toDate)
|
||||
{
|
||||
_logger.LogInformation("GetAllSales params: {fromDate}, {toDate}", fromDate, toDate);
|
||||
_logger.LogInformation("GetAllSales params: {fromDate}, {toDate}",
|
||||
fromDate, toDate);
|
||||
if (fromDate.IsDateNotOlder(toDate))
|
||||
{
|
||||
throw new IncorrectDatesException(fromDate, toDate);
|
||||
throw new IncorrectDatesException(fromDate, toDate, _localizer);
|
||||
}
|
||||
return _saleStorageContract.GetList(fromDate, toDate) ?? throw new NullListException();
|
||||
return _saleStorageContract.GetList(fromDate, toDate);
|
||||
}
|
||||
|
||||
public List<SaleDataModel> GetAllSalesByEmployeeByPeriod(string employeeId, DateTime fromDate, DateTime toDate)
|
||||
public List<SaleDataModel> GetAllSalesByWorkerByPeriod(string workerId, DateTime fromDate, DateTime toDate)
|
||||
{
|
||||
_logger.LogInformation("GetAllSales params: {employeeId}, {fromDate}, {toDate}", employeeId, fromDate, toDate);
|
||||
if (fromDate.IsDateNotOlder(toDate))
|
||||
_logger.LogInformation("GetAllSales params: {workerId}, {fromDate}, {toDate}", workerId, fromDate, toDate);
|
||||
if (fromDate.IsDateNotOlder(toDate))
|
||||
{
|
||||
throw new IncorrectDatesException(fromDate, toDate);
|
||||
throw new IncorrectDatesException(fromDate, toDate, _localizer);
|
||||
}
|
||||
if (employeeId.IsEmpty())
|
||||
if (workerId.IsEmpty())
|
||||
{
|
||||
throw new ArgumentNullException(nameof(employeeId));
|
||||
throw new ArgumentNullException(nameof(workerId));
|
||||
}
|
||||
if (!employeeId.IsGuid())
|
||||
if (!workerId.IsGuid())
|
||||
{
|
||||
throw new ValidationException("The value in the field employeeId is not a unique identifier.");
|
||||
throw new ValidationException(string.Format(_localizer["ValidationExceptionMessageNotAId"], "WorkerId"));
|
||||
}
|
||||
return _saleStorageContract.GetList(fromDate, toDate, employeeId: employeeId) ?? throw new NullListException();
|
||||
return _saleStorageContract.GetList(fromDate, toDate, workerId:
|
||||
workerId);
|
||||
}
|
||||
|
||||
public List<SaleDataModel> GetAllSalesByClientByPeriod(string clientId, DateTime fromDate, DateTime toDate)
|
||||
public List<SaleDataModel> GetAllSalesByCustomerByPeriod(string customerId,
|
||||
DateTime fromDate, DateTime toDate)
|
||||
{
|
||||
_logger.LogInformation("GetAllSales params: {buyerId}, {fromDate}, {toDate}", clientId, fromDate, toDate);
|
||||
if (fromDate.IsDateNotOlder(toDate))
|
||||
_logger.LogInformation("GetAllSales params: {customerId}, {fromDate}, {toDate}", customerId, fromDate, toDate);
|
||||
if (fromDate.IsDateNotOlder(toDate))
|
||||
{
|
||||
throw new IncorrectDatesException(fromDate, toDate);
|
||||
throw new IncorrectDatesException(fromDate, toDate, _localizer);
|
||||
}
|
||||
if (clientId.IsEmpty())
|
||||
if (customerId.IsEmpty())
|
||||
{
|
||||
throw new ArgumentNullException(nameof(clientId));
|
||||
throw new ArgumentNullException(nameof(customerId));
|
||||
}
|
||||
if (!clientId.IsGuid())
|
||||
if (!customerId.IsGuid())
|
||||
{
|
||||
throw new ValidationException("The value in the field clientId is not a unique identifier.");
|
||||
throw new ValidationException(string.Format(_localizer["ValidationExceptionMessageNotAId"], "CustomerId"));
|
||||
}
|
||||
return _saleStorageContract.GetList(fromDate, toDate, clientId: clientId) ?? throw new NullListException();
|
||||
return _saleStorageContract.GetList(fromDate, toDate, customerId:
|
||||
customerId);
|
||||
}
|
||||
|
||||
public List<SaleDataModel> GetAllSalesByProductByPeriod(string productId, DateTime fromDate, DateTime toDate)
|
||||
@@ -70,7 +69,7 @@ public class SaleBusinessLogicContract(ISaleStorageContract saleStorageContract,
|
||||
_logger.LogInformation("GetAllSales params: {productId}, {fromDate}, {toDate}", productId, fromDate, toDate);
|
||||
if (fromDate.IsDateNotOlder(toDate))
|
||||
{
|
||||
throw new IncorrectDatesException(fromDate, toDate);
|
||||
throw new IncorrectDatesException(fromDate, toDate, _localizer);
|
||||
}
|
||||
if (productId.IsEmpty())
|
||||
{
|
||||
@@ -78,9 +77,9 @@ public class SaleBusinessLogicContract(ISaleStorageContract saleStorageContract,
|
||||
}
|
||||
if (!productId.IsGuid())
|
||||
{
|
||||
throw new ValidationException("The value in the field productId is not a unique identifier.");
|
||||
throw new ValidationException(string.Format(_localizer["ValidationExceptionMessageNotAId"], "ProductId"));
|
||||
}
|
||||
return _saleStorageContract.GetList(fromDate, toDate, productId: productId) ?? throw new NullListException();
|
||||
return _saleStorageContract.GetList(fromDate, toDate, productId: productId);
|
||||
}
|
||||
|
||||
public SaleDataModel GetSaleByData(string data)
|
||||
@@ -92,20 +91,24 @@ public class SaleBusinessLogicContract(ISaleStorageContract saleStorageContract,
|
||||
}
|
||||
if (!data.IsGuid())
|
||||
{
|
||||
throw new ValidationException("Id is not a unique identifier");
|
||||
throw new ValidationException(string.Format(_localizer["ValidationExceptionMessageNotAId"], "Id"));
|
||||
}
|
||||
return _saleStorageContract.GetElementById(data) ?? throw new ElementNotFoundException(data);
|
||||
return _saleStorageContract.GetElementById(data) ?? throw new
|
||||
ElementNotFoundException(data, _localizer);
|
||||
}
|
||||
|
||||
public void InsertSale(SaleDataModel saleDataModel)
|
||||
{
|
||||
_logger.LogInformation("New data: {json}", JsonSerializer.Serialize(saleDataModel));
|
||||
_logger.LogInformation("New data: {json}",
|
||||
JsonSerializer.Serialize(saleDataModel));
|
||||
ArgumentNullException.ThrowIfNull(saleDataModel);
|
||||
saleDataModel.Validate();
|
||||
if (!_storageStorageContract.CheckComponents(saleDataModel))
|
||||
saleDataModel.Validate(_localizer);
|
||||
|
||||
if (!_storageStorageContract.CheckAndWriteOffСomponentsFromStorage(saleDataModel))
|
||||
{
|
||||
throw new InsufficientException("Dont have product in storage");
|
||||
throw new InsufficientStockException(_localizer);
|
||||
}
|
||||
|
||||
_saleStorageContract.AddElement(saleDataModel);
|
||||
}
|
||||
|
||||
@@ -118,8 +121,50 @@ public class SaleBusinessLogicContract(ISaleStorageContract saleStorageContract,
|
||||
}
|
||||
if (!id.IsGuid())
|
||||
{
|
||||
throw new ValidationException("Id is not a unique identifier");
|
||||
throw new ValidationException(string.Format(_localizer["ValidationExceptionMessageNotAId"], "Id"));
|
||||
}
|
||||
_saleStorageContract.DelElement(id);
|
||||
}
|
||||
}
|
||||
|
||||
public double CalculateSalesRevenue(DateTime fromDate, DateTime toDate)
|
||||
{
|
||||
if (fromDate > toDate)
|
||||
throw new ValidationException("fromDate cannot be later than toDate");
|
||||
|
||||
_logger.LogInformation("Calculating sales revenue from {fromDate} to {toDate}", fromDate, toDate);
|
||||
|
||||
var sales = GetAllSalesByPeriod(fromDate, toDate);
|
||||
if (sales == null || !sales.Any())
|
||||
{
|
||||
_logger.LogWarning("No sales found for the period {fromDate} to {toDate}", fromDate, toDate);
|
||||
return 0.0;
|
||||
}
|
||||
|
||||
double totalRevenue = 0.0;
|
||||
object lockObject = new object();
|
||||
var parallelOptions = new ParallelOptions { MaxDegreeOfParallelism = Environment.ProcessorCount };
|
||||
|
||||
try
|
||||
{
|
||||
Parallel.ForEach(sales, parallelOptions, sale =>
|
||||
{
|
||||
if (!sale.IsCancel)
|
||||
{
|
||||
double saleRevenue = sale.Sum - sale.Discount;
|
||||
lock (lockObject)
|
||||
{
|
||||
totalRevenue += saleRevenue;
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
catch (AggregateException ex)
|
||||
{
|
||||
_logger.LogError(ex, "Error occurred while calculating sales revenue");
|
||||
throw new StorageException(ex, _localizer);
|
||||
}
|
||||
|
||||
_logger.LogInformation("Total sales revenue: {totalRevenue}", totalRevenue);
|
||||
return totalRevenue;
|
||||
}
|
||||
}
|
||||
@@ -1,74 +1,203 @@
|
||||
using CandyHouseContracts.BusinessLogicContracts;
|
||||
using CandyHouseContracts.DataModels;
|
||||
using CandyHouseContracts.Enums;
|
||||
using CandyHouseContracts.Exceptions;
|
||||
using CandyHouseContracts.Extensions;
|
||||
using CandyHouseContracts.StoragesContracts;
|
||||
using Microsoft.Extensions.Localization;
|
||||
using Microsoft.Extensions.Logging;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using CandyHouseContracts.BusinessLogicsContracts;
|
||||
using CandyHouseContracts.DataModels;
|
||||
using CandyHouseContracts.Exceptions;
|
||||
using CandyHouseContracts.Resources;
|
||||
using CandyHouseContracts.StoragesContracts;
|
||||
using System.Text.Json;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace CandyHouseBusinessLogic.Implementations;
|
||||
|
||||
public class StorageBusinessLogicContract(IStorageStorageContract storageStorageContract, ILogger logger) : IStorageBusinessLogicContract
|
||||
internal class StorageBusinessLogicContract : IStorageBusinessLogicContract
|
||||
{
|
||||
private readonly IStorageStorageContract _storageStorageContract = storageStorageContract;
|
||||
private readonly ILogger _logger = logger;
|
||||
public List<StorageDataModel> GetAllComponents()
|
||||
{
|
||||
_logger.LogInformation("GetAllComponents");
|
||||
return _storageStorageContract.GetList() ?? throw new NullListException();
|
||||
private readonly IStorageContract _storageContract;
|
||||
private readonly ISupplyStorageContract _supplyStorageContract;
|
||||
private readonly ILogger<StorageBusinessLogicContract> _logger;
|
||||
private readonly IStringLocalizer<Messages> _localizer;
|
||||
|
||||
return [];
|
||||
public StorageBusinessLogicContract(IStorageContract storageContract, ISupplyStorageContract supplyStorageContract, IStringLocalizer<Messages> localizer, ILogger<StorageBusinessLogicContract> logger)
|
||||
{
|
||||
_storageContract = storageContract ?? throw new ArgumentNullException(nameof(storageContract));
|
||||
_supplyStorageContract = supplyStorageContract ?? throw new ArgumentNullException(nameof(supplyStorageContract));
|
||||
_logger = logger ?? throw new ArgumentNullException(nameof(logger));
|
||||
_localizer = localizer;
|
||||
}
|
||||
|
||||
public StorageDataModel GetComponentByData(string data)
|
||||
public List<StorageDataModel> GetAllStorages()
|
||||
{
|
||||
_logger.LogInformation("Get element by data: {data}", data);
|
||||
if (data.IsEmpty())
|
||||
var storages = _storageContract.GetAllStorages();
|
||||
return storages;
|
||||
}
|
||||
|
||||
public void CreateStorage(string id, string address, int count, List<StorageIngredientDataModel> ingredients)
|
||||
{
|
||||
if (string.IsNullOrEmpty(id))
|
||||
throw new ValidationException(string.Format(_localizer["ValidationExceptionMessageEmptyField"], "id"));
|
||||
|
||||
if (string.IsNullOrEmpty(address))
|
||||
throw new ValidationException(string.Format(_localizer["ValidationExceptionMessageEmptyField"], "address"));
|
||||
|
||||
// Проверка существования склада с таким ID
|
||||
if (_storageContract.GetStorageById(id) != null)
|
||||
throw new ElementExistsException("Id", id, _localizer);
|
||||
|
||||
var storage = new StorageDataModel(id, address, count, ingredients ?? new List<StorageIngredientDataModel>());
|
||||
storage.Validate(_localizer);
|
||||
_storageContract.AddStorage(storage);
|
||||
}
|
||||
|
||||
public void UpdateStorage(StorageDataModel storage)
|
||||
{
|
||||
_logger.LogInformation("Update data: {json}", JsonSerializer.Serialize(storage));
|
||||
ArgumentNullException.ThrowIfNull(storage);
|
||||
storage.Validate(_localizer);
|
||||
var existingStorage = _storageContract.GetStorageById(storage.Id);
|
||||
if (existingStorage == null)
|
||||
throw new ElementNotFoundException($"Storage with ID {storage.Id} not found", _localizer);
|
||||
|
||||
_storageContract.UpdateStorage(storage);
|
||||
}
|
||||
|
||||
public void AddIngredientToStorage(string storageId, StorageIngredientDataModel ingredient)
|
||||
{
|
||||
if (string.IsNullOrEmpty(storageId))
|
||||
throw new ValidationException(string.Format(_localizer["ValidationExceptionMessageEmptyField"], "storageId"));
|
||||
|
||||
if (ingredient == null)
|
||||
throw new ValidationException(string.Format(_localizer["ValidationExceptionMessageNotInitialized"], "ingredient"));
|
||||
|
||||
var storage = _storageContract.GetStorageById(storageId);
|
||||
if (storage == null)
|
||||
throw new ValidationException(string.Format(_localizer["ValidationExceptionMessageNotInitialized"], "storage"));
|
||||
|
||||
ingredient.Validate(_localizer);
|
||||
var existingIngredient = _storageContract.GetIngredientOnStorage(storageId, ingredient.IngredientId);
|
||||
var updatedCount = existingIngredient?.Count + ingredient.Count ?? ingredient.Count;
|
||||
var updatedIngredient = new StorageIngredientDataModel(storageId, ingredient.IngredientId, updatedCount);
|
||||
_storageContract.AddOrUpdateIngredientOnStorage(updatedIngredient);
|
||||
}
|
||||
|
||||
public void UpdateIngredientCount(string storageId, string ingredientId, int newCount)
|
||||
{
|
||||
if (string.IsNullOrEmpty(storageId))
|
||||
throw new ValidationException(string.Format(_localizer["ValidationExceptionMessageEmptyField"], "storageId"));
|
||||
|
||||
if (string.IsNullOrEmpty(ingredientId))
|
||||
throw new ValidationException(string.Format(_localizer["ValidationExceptionMessageEmptyField"], "ingredientId"));
|
||||
|
||||
if (newCount < 0)
|
||||
throw new ValidationException(string.Format(_localizer["ValidationExceptionMessageLessOrEqualZero"], "newCount"));
|
||||
|
||||
var storage = _storageContract.GetStorageById(storageId);
|
||||
if (storage == null)
|
||||
throw new ValidationException(string.Format(_localizer["ValidationExceptionMessageNotInitialized"], "storage"));
|
||||
|
||||
_storageContract.UpdateIngredientCount(storageId, ingredientId, newCount);
|
||||
}
|
||||
|
||||
public int GetIngredientCountFromStorage(string storageId, string ingredientId)
|
||||
{
|
||||
if (string.IsNullOrEmpty(storageId))
|
||||
throw new ValidationException(string.Format(_localizer["ValidationExceptionMessageEmptyField"], "storageId"));
|
||||
|
||||
if (string.IsNullOrEmpty(ingredientId))
|
||||
throw new ValidationException(string.Format(_localizer["ValidationExceptionMessageEmptyField"], "ingredientId"));
|
||||
|
||||
var ingredient = _storageContract.GetIngredientOnStorage(storageId, ingredientId);
|
||||
if (ingredient == null)
|
||||
throw new ValidationException(string.Format(_localizer["ValidationExceptionMessageNotInitialized"], "ingredient"));
|
||||
|
||||
return ingredient.Count;
|
||||
}
|
||||
|
||||
public List<StorageIngredientDataModel> GetIngredientsFromStorage(string storageId)
|
||||
{
|
||||
if (string.IsNullOrEmpty(storageId))
|
||||
throw new ValidationException(string.Format(_localizer["ValidationExceptionMessageEmptyField"], "storageId"));
|
||||
|
||||
var storage = _storageContract.GetStorageById(storageId);
|
||||
if (storage == null)
|
||||
throw new ValidationException(string.Format(_localizer["ValidationExceptionMessageNotInitialized"], "storage"));
|
||||
|
||||
return _storageContract.GetIngredientsOnStorage(storageId);
|
||||
}
|
||||
|
||||
public StorageDataModel GetStorageById(string storageId)
|
||||
{
|
||||
if (string.IsNullOrEmpty(storageId))
|
||||
throw new ValidationException(string.Format(_localizer["ValidationExceptionMessageEmptyField"], "storageId"));
|
||||
|
||||
var storage = _storageContract.GetStorageById(storageId);
|
||||
if (storage == null)
|
||||
throw new ElementNotFoundException(string.Format(_localizer["ValidationExceptionMessageNotInitialized"], "storage"), _localizer);
|
||||
|
||||
return storage;
|
||||
}
|
||||
|
||||
public Dictionary<string, int> CalculateRemainingIngredients(string storageId)
|
||||
{
|
||||
if (string.IsNullOrEmpty(storageId))
|
||||
throw new ValidationException(string.Format(_localizer["ValidationExceptionMessageEmptyField"], "storageId"));
|
||||
|
||||
var storage = _storageContract.GetStorageById(storageId);
|
||||
if (storage == null)
|
||||
throw new ValidationException(string.Format(_localizer["ValidationExceptionMessageNotInitialized"], "storage"));
|
||||
|
||||
_logger.LogInformation("Calculating remaining ingredients for storage {storageId}", storageId);
|
||||
|
||||
var remainingIngredients = new Dictionary<string, int>();
|
||||
|
||||
try
|
||||
{
|
||||
throw new ArgumentNullException(nameof(data));
|
||||
var supplyTask = Task.Run(() =>
|
||||
{
|
||||
var supplies = _supplyStorageContract.GetSuppliesByStorageId(storageId);
|
||||
var suppliedIngredients = new Dictionary<string, int>();
|
||||
foreach (var supply in supplies)
|
||||
{
|
||||
if (supply.Ingredients != null)
|
||||
{
|
||||
foreach (var ingredient in supply.Ingredients)
|
||||
{
|
||||
if (suppliedIngredients.ContainsKey(ingredient.IngredientId))
|
||||
suppliedIngredients[ingredient.IngredientId] += ingredient.Count;
|
||||
else
|
||||
suppliedIngredients[ingredient.IngredientId] = ingredient.Count;
|
||||
}
|
||||
}
|
||||
}
|
||||
return suppliedIngredients;
|
||||
});
|
||||
|
||||
var writeOffTask = Task.Run(() =>
|
||||
{
|
||||
return _storageContract.GetWrittenOffIngredientsByStorageId(storageId);
|
||||
});
|
||||
|
||||
Task.WhenAll(supplyTask, writeOffTask).GetAwaiter().GetResult();
|
||||
|
||||
var suppliedIngredients = supplyTask.Result;
|
||||
var writtenOffIngredients = writeOffTask.Result;
|
||||
|
||||
foreach (var ingredient in suppliedIngredients)
|
||||
{
|
||||
int writtenOffCount = writtenOffIngredients.ContainsKey(ingredient.Key) ? writtenOffIngredients[ingredient.Key] : 0;
|
||||
int remainingCount = ingredient.Value - writtenOffCount;
|
||||
if (remainingCount > 0)
|
||||
{
|
||||
remainingIngredients[ingredient.Key] = remainingCount;
|
||||
}
|
||||
}
|
||||
|
||||
_logger.LogInformation("Remaining ingredients calculated for storage {storageId}: {count} ingredients", storageId, remainingIngredients.Count);
|
||||
}
|
||||
if (!data.IsGuid())
|
||||
catch (Exception ex)
|
||||
{
|
||||
throw new ElementNotFoundException(data);
|
||||
_logger.LogError(ex, "Error occurred while calculating remaining ingredients for storage {storageId}", storageId);
|
||||
throw new StorageException(ex, _localizer);
|
||||
}
|
||||
return _storageStorageContract.GetElementById(data) ?? throw new ElementNotFoundException(data);
|
||||
|
||||
return new("", ProductType.None, 0, []);
|
||||
return remainingIngredients;
|
||||
}
|
||||
|
||||
public void InsertComponent(StorageDataModel storageDataModel)
|
||||
{
|
||||
_logger.LogInformation("New data: {json}", JsonSerializer.Serialize(storageDataModel));
|
||||
ArgumentNullException.ThrowIfNull(storageDataModel);
|
||||
storageDataModel.Validate();
|
||||
_storageStorageContract.AddElement(storageDataModel);
|
||||
}
|
||||
|
||||
public void UpdateComponent(StorageDataModel storageDataModel)
|
||||
{
|
||||
_logger.LogInformation("Update data: {json}", JsonSerializer.Serialize(storageDataModel));
|
||||
ArgumentNullException.ThrowIfNull(storageDataModel);
|
||||
storageDataModel.Validate();
|
||||
_storageStorageContract.UpdElement(storageDataModel);
|
||||
}
|
||||
|
||||
public void DeleteComponent(string id)
|
||||
{
|
||||
logger.LogInformation("Delete by id: {id}", id);
|
||||
if (id.IsEmpty())
|
||||
{
|
||||
throw new ArgumentNullException(nameof(id));
|
||||
}
|
||||
if (!id.IsGuid())
|
||||
{
|
||||
throw new ValidationException("Id is not a unique identifier");
|
||||
}
|
||||
_storageStorageContract.DelElement(id);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,61 +0,0 @@
|
||||
using CandyHouseContracts.BusinessLogicContracts;
|
||||
using CandyHouseContracts.DataModels;
|
||||
using CandyHouseContracts.Enums;
|
||||
using CandyHouseContracts.Exceptions;
|
||||
using CandyHouseContracts.Extensions;
|
||||
using CandyHouseContracts.StoragesContracts;
|
||||
using Microsoft.Extensions.Logging;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Text.Json;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace CandyHouseBusinessLogic.Implementations;
|
||||
|
||||
public class SuppliesBusinessLogicContract(ISuppliesStorageContract suppliesStorageContract, ILogger logger) : ISuppliesBusinessLogicContract
|
||||
{
|
||||
private readonly ISuppliesStorageContract _suppliesStorageContract = suppliesStorageContract;
|
||||
private readonly ILogger _logger = logger;
|
||||
|
||||
public List<SuppliesDataModel> GetAllComponents()
|
||||
{
|
||||
_logger.LogInformation("GetAllComponents");
|
||||
return _suppliesStorageContract.GetList() ?? throw new NullListException();
|
||||
|
||||
return [];
|
||||
}
|
||||
|
||||
public SuppliesDataModel GetComponentByData(string data)
|
||||
{
|
||||
_logger.LogInformation("Get element by data: {data}", data);
|
||||
if (data.IsEmpty())
|
||||
{
|
||||
throw new ArgumentNullException(nameof(data));
|
||||
}
|
||||
if (!data.IsGuid())
|
||||
{
|
||||
throw new ElementNotFoundException(data);
|
||||
}
|
||||
return _suppliesStorageContract.GetElementById(data) ?? throw new ElementNotFoundException(data);
|
||||
|
||||
return new("", ProductType.None, DateTime.UtcNow, 0, []);
|
||||
}
|
||||
|
||||
public void InsertComponent(SuppliesDataModel suppliesDataModel)
|
||||
{
|
||||
_logger.LogInformation("New data: {json}", JsonSerializer.Serialize(suppliesDataModel));
|
||||
ArgumentNullException.ThrowIfNull(suppliesDataModel);
|
||||
suppliesDataModel.Validate();
|
||||
_suppliesStorageContract.AddElement(suppliesDataModel);
|
||||
}
|
||||
|
||||
public void UpdateComponent(SuppliesDataModel suppliesDataModel)
|
||||
{
|
||||
_logger.LogInformation("Update data: {json}", JsonSerializer.Serialize(suppliesDataModel));
|
||||
ArgumentNullException.ThrowIfNull(suppliesDataModel);
|
||||
suppliesDataModel.Validate();
|
||||
_suppliesStorageContract.UpdElement(suppliesDataModel);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,174 @@
|
||||
using DocumentFormat.OpenXml.VariantTypes;
|
||||
using Microsoft.Extensions.Localization;
|
||||
using CandyHouseContracts.BusinessLogicsContracts;
|
||||
using CandyHouseContracts.DataModels;
|
||||
using CandyHouseContracts.Exceptions;
|
||||
using CandyHouseContracts.Resources;
|
||||
using CandyHouseContracts.StoragesContracts;
|
||||
|
||||
namespace CandyHouseBusinessLogic.Implementations;
|
||||
|
||||
internal class SupplyBusinessLogicContract : ISupplyBusinessLogicContract
|
||||
{
|
||||
private readonly ISupplyStorageContract _supplyStorageContract;
|
||||
private readonly IStorageContract _storageContract;
|
||||
private readonly IStringLocalizer<Messages> _localizer;
|
||||
|
||||
public SupplyBusinessLogicContract(ISupplyStorageContract supplyStorageContract, IStorageContract storageContract, IStringLocalizer<Messages> localizer)
|
||||
{
|
||||
_supplyStorageContract = supplyStorageContract ?? throw new ArgumentNullException(nameof(supplyStorageContract));
|
||||
_storageContract = storageContract ?? throw new ArgumentNullException(nameof(storageContract));
|
||||
_localizer = localizer;
|
||||
}
|
||||
|
||||
public void CreateSupply(SupplyDataModel supply)
|
||||
{
|
||||
if (supply == null)
|
||||
throw new ValidationException(string.Format(_localizer["ValidationExceptionMessageNotInitialized"], "supply"));
|
||||
|
||||
// Проверка существования поставки с таким ID
|
||||
if (_supplyStorageContract.GetSupplyById(supply.Id) != null)
|
||||
throw new ElementExistsException("Id", supply.Id, _localizer);
|
||||
|
||||
supply.Validate(_localizer);
|
||||
var storage = _storageContract.GetStorageById(supply.StorageId);
|
||||
if (storage == null)
|
||||
throw new ValidationException(string.Format(_localizer["ValidationExceptionMessageNotInitialized"], "storage"));
|
||||
|
||||
foreach (var ingredient in supply.Ingredients)
|
||||
{
|
||||
ingredient.Validate(_localizer);
|
||||
}
|
||||
|
||||
_supplyStorageContract.AddSupply(supply);
|
||||
|
||||
try
|
||||
{
|
||||
foreach (var ingredient in supply.Ingredients)
|
||||
{
|
||||
var storageIngredient = _storageContract.GetIngredientOnStorage(supply.StorageId, ingredient.IngredientId)
|
||||
?? new StorageIngredientDataModel(supply.StorageId, ingredient.IngredientId, 0);
|
||||
var updatedIngredient = new StorageIngredientDataModel(
|
||||
storageIngredient.StorageId,
|
||||
storageIngredient.IngredientId,
|
||||
storageIngredient.Count + ingredient.Count
|
||||
);
|
||||
_storageContract.AddOrUpdateIngredientOnStorage(updatedIngredient);
|
||||
}
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
_supplyStorageContract.RemoveSupply(supply.Id);
|
||||
throw new ValidationException(string.Format(_localizer["ValidationExceptionMessageUnexpectedError"], ex));
|
||||
}
|
||||
}
|
||||
|
||||
public List<SupplyDataModel> GetAllSupplies()
|
||||
{
|
||||
var supplies = _supplyStorageContract.GetAllSupplies();
|
||||
if (supplies is null || supplies.Count == 0)
|
||||
{
|
||||
throw new ElementNotFoundException(string.Format(_localizer["ValidationExceptionMessageEmptyField"], "supplyId"), _localizer);
|
||||
}
|
||||
return supplies;
|
||||
}
|
||||
|
||||
public SupplyDataModel GetSupplyById(string supplyId)
|
||||
{
|
||||
if (string.IsNullOrEmpty(supplyId))
|
||||
throw new ValidationException(string.Format(_localizer["ValidationExceptionMessageEmptyField"], "supplyId"));
|
||||
|
||||
var supply = _supplyStorageContract.GetSupplyById(supplyId);
|
||||
if (supply == null)
|
||||
throw new ElementNotFoundException(string.Format(_localizer["ValidationExceptionMessageNotInitialized"], "supply"), _localizer);
|
||||
|
||||
return supply;
|
||||
}
|
||||
|
||||
public List<SupplyDataModel> GetSuppliesByStorageId(string storageId)
|
||||
{
|
||||
if (string.IsNullOrEmpty(storageId))
|
||||
throw new ValidationException(string.Format(_localizer["ValidationExceptionMessageEmptyField"], "storageId"));
|
||||
|
||||
var storage = _storageContract.GetStorageById(storageId);
|
||||
if (storage == null)
|
||||
throw new ValidationException(string.Format(_localizer["ValidationExceptionMessageNotInitialized"], "storage"));
|
||||
|
||||
return _supplyStorageContract.GetSuppliesByStorageId(storageId);
|
||||
}
|
||||
|
||||
public void AddOrUpdateIngredientInSupply(SupplyIngredientDataModel ingredient)
|
||||
{
|
||||
if (ingredient == null)
|
||||
throw new ValidationException(string.Format(_localizer["ValidationExceptionMessageNotInitialized"], "ingredient"));
|
||||
|
||||
ingredient.Validate(_localizer);
|
||||
_supplyStorageContract.AddOrUpdateIngredientInSupply(ingredient);
|
||||
}
|
||||
|
||||
public void UpdateIngredientCountInSupply(string supplyId, string ingredientId, int newCount)
|
||||
{
|
||||
if (string.IsNullOrEmpty(supplyId))
|
||||
throw new ValidationException(string.Format(_localizer["ValidationExceptionMessageEmptyField"], "supplyId"));
|
||||
|
||||
if (string.IsNullOrEmpty(ingredientId))
|
||||
throw new ValidationException(string.Format(_localizer["ValidationExceptionMessageEmptyField"], "ingredientId"));
|
||||
|
||||
if (newCount <= 0)
|
||||
throw new ValidationException(string.Format(_localizer["ValidationExceptionMessageLessOrEqualZero"], "newCount"));
|
||||
|
||||
var supply = _supplyStorageContract.GetSupplyById(supplyId);
|
||||
if (supply == null)
|
||||
throw new ValidationException(string.Format(_localizer["ValidationExceptionMessageNotInitialized"], "supply"));
|
||||
|
||||
_supplyStorageContract.UpdateIngredientCountInSupply(supplyId, ingredientId, newCount);
|
||||
}
|
||||
|
||||
public void RemoveIngredientFromSupply(string supplyId, string ingredientId)
|
||||
{
|
||||
if (string.IsNullOrEmpty(supplyId))
|
||||
throw new ValidationException(string.Format(_localizer["ValidationExceptionMessageEmptyField"], "supplyId"));
|
||||
|
||||
if (string.IsNullOrEmpty(ingredientId))
|
||||
throw new ValidationException(string.Format(_localizer["ValidationExceptionMessageEmptyField"], "ingredientId"));
|
||||
|
||||
var supply = _supplyStorageContract.GetSupplyById(supplyId);
|
||||
if (supply == null)
|
||||
throw new ValidationException(string.Format(_localizer["ValidationExceptionMessageNotInitialized"], "supply"));
|
||||
|
||||
_supplyStorageContract.RemoveIngredientFromSupply(supplyId, ingredientId);
|
||||
}
|
||||
|
||||
public int CalculateSuppliedIngredientsCount(DateTime fromDate, DateTime toDate)
|
||||
{
|
||||
if (fromDate > toDate)
|
||||
throw new ValidationException(string.Format(_localizer["ValidationExceptionMessageDeliveryDateInFuture"], fromDate.ToShortDateString()));
|
||||
|
||||
var supplies = _supplyStorageContract.GetSuppliesByPeriod(fromDate, toDate);
|
||||
if (supplies == null || !supplies.Any())
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
int totalCount = 0;
|
||||
var parallelOptions = new ParallelOptions { MaxDegreeOfParallelism = Environment.ProcessorCount };
|
||||
|
||||
try
|
||||
{
|
||||
Parallel.ForEach(supplies, parallelOptions, supply =>
|
||||
{
|
||||
if (supply.Ingredients != null)
|
||||
{
|
||||
int supplyCount = supply.Ingredients.Sum(c => c.Count);
|
||||
Interlocked.Add(ref totalCount, supplyCount);
|
||||
}
|
||||
});
|
||||
}
|
||||
catch (AggregateException ex)
|
||||
{
|
||||
throw new StorageException(ex, _localizer);
|
||||
}
|
||||
|
||||
return totalCount;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,101 @@
|
||||
using CandyHouseContracts.BusinessLogicsContracts;
|
||||
using CandyHouseContracts.DataModels;
|
||||
using CandyHouseContracts.Exceptions;
|
||||
using CandyHouseContracts.Extensions;
|
||||
using CandyHouseContracts.StoragesContracts;
|
||||
using Microsoft.Extensions.Logging;
|
||||
using System.Text.Json;
|
||||
using Microsoft.Extensions.Localization;
|
||||
using CandyHouseContracts.Resources;
|
||||
|
||||
namespace CandyHouseBusinessLogic.Implementations;
|
||||
internal class WorkerBusinessLogicContract(IWorkerStorageContract workerStorage, IStringLocalizer<Messages> localizer, ILogger<WorkerBusinessLogicContract> logger) : IWorkerBusinessLogicContract
|
||||
{
|
||||
private readonly ILogger<WorkerBusinessLogicContract> _logger = logger;
|
||||
private readonly IWorkerStorageContract _workerStorage = workerStorage;
|
||||
private readonly IStringLocalizer<Messages> _localizer = localizer;
|
||||
|
||||
public List<WorkerDataModel> GetAllWorkers(bool onlyActive = true)
|
||||
{
|
||||
_logger.LogInformation("GetAllWorkers params: {onlyActive}", onlyActive);
|
||||
return _workerStorage.GetList(onlyActive, null, null, null, null, null);
|
||||
}
|
||||
|
||||
public List<WorkerDataModel> GetAllWorkersByPost(string postId, bool onlyActive = true)
|
||||
{
|
||||
_logger.LogInformation("GetAllWorkers params: {postId}, {onlyActive}", postId, onlyActive);
|
||||
if (postId.IsEmpty())
|
||||
{
|
||||
throw new ArgumentNullException(nameof(postId));
|
||||
}
|
||||
if (!postId.IsGuid())
|
||||
{
|
||||
throw new ValidationException(string.Format(_localizer["ValidationExceptionMessageNotAId"], "PostId"));
|
||||
}
|
||||
return _workerStorage.GetList(onlyActive, postId, null, null, null, null);
|
||||
}
|
||||
|
||||
public List<WorkerDataModel> GetAllWorkersByBirthDate(DateTime fromDate, DateTime toDate, bool onlyActive = true)
|
||||
{
|
||||
_logger.LogInformation("GetAllWorkers params: {onlyActive}, {fromDate}, {toDate}", onlyActive, fromDate, toDate);
|
||||
if (fromDate.IsDateNotOlder(toDate))
|
||||
{
|
||||
throw new IncorrectDatesException(fromDate, toDate, _localizer);
|
||||
}
|
||||
return _workerStorage.GetList(onlyActive, null, fromDate, toDate, null, null);
|
||||
}
|
||||
|
||||
public List<WorkerDataModel> GetAllWorkersByEmploymentDate(DateTime fromDate, DateTime toDate, bool onlyActive = true)
|
||||
{
|
||||
_logger.LogInformation("GetAllWorkers params: {onlyActive}, {fromDate}, {toDate}", onlyActive, fromDate, toDate);
|
||||
if (fromDate.IsDateNotOlder(toDate))
|
||||
{
|
||||
throw new IncorrectDatesException(fromDate, toDate, _localizer);
|
||||
}
|
||||
return _workerStorage.GetList(onlyActive, null, null, null, fromDate, toDate);
|
||||
}
|
||||
|
||||
public WorkerDataModel GetWorkerByData(string data)
|
||||
{
|
||||
_logger.LogInformation("Get element by data: {data}", data);
|
||||
if (data.IsEmpty())
|
||||
{
|
||||
throw new ArgumentNullException(nameof(data));
|
||||
}
|
||||
if (data.IsGuid())
|
||||
{
|
||||
return _workerStorage.GetElementById(data) ?? throw new ElementNotFoundException(data, _localizer);
|
||||
}
|
||||
return _workerStorage.GetElementByFIO(data) ?? throw new ElementNotFoundException(data, _localizer);
|
||||
}
|
||||
|
||||
public void InsertWorker(WorkerDataModel workerDataModel)
|
||||
{
|
||||
_logger.LogInformation("New data: {json}", JsonSerializer.Serialize(workerDataModel));
|
||||
ArgumentNullException.ThrowIfNull(workerDataModel);
|
||||
workerDataModel.Validate(_localizer);
|
||||
_workerStorage.AddElement(workerDataModel);
|
||||
}
|
||||
|
||||
public void UpdateWorker(WorkerDataModel workerDataModel)
|
||||
{
|
||||
_logger.LogInformation("Update data: {json}", JsonSerializer.Serialize(workerDataModel));
|
||||
ArgumentNullException.ThrowIfNull(workerDataModel);
|
||||
workerDataModel.Validate(_localizer);
|
||||
_workerStorage.UpdateElement(workerDataModel);
|
||||
}
|
||||
|
||||
public void DeleteWorker(string id)
|
||||
{
|
||||
_logger.LogInformation("Delete by id: {id}", id);
|
||||
if (id.IsEmpty())
|
||||
{
|
||||
throw new ArgumentNullException(nameof(id));
|
||||
}
|
||||
if (!id.IsGuid())
|
||||
{
|
||||
throw new ValidationException(string.Format(_localizer["ValidationExceptionMessageNotAId"], "Id"));
|
||||
}
|
||||
_workerStorage.DeleteElement(id);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
namespace CandyHouseBusinessLogic.OfficePackage;
|
||||
|
||||
public abstract class BaseExcelBuilder
|
||||
{
|
||||
public abstract BaseExcelBuilder AddHeader(string header, int startIndex, int count);
|
||||
|
||||
public abstract BaseExcelBuilder AddParagraph(string text, int columnIndex);
|
||||
|
||||
public abstract BaseExcelBuilder AddTable(int[] columnsWidths, List<string[]> data);
|
||||
|
||||
public abstract Stream Build();
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
namespace CandyHouseBusinessLogic.OfficePackage;
|
||||
|
||||
public abstract class BasePdfBuilder
|
||||
{
|
||||
public abstract BasePdfBuilder AddHeader(string header);
|
||||
|
||||
public abstract BasePdfBuilder AddParagraph(string text);
|
||||
|
||||
public abstract BasePdfBuilder AddPieChart(string title, List<(string Caption, double Value)> data);
|
||||
|
||||
public abstract Stream Build();
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
namespace CandyHouseBusinessLogic.OfficePackage;
|
||||
|
||||
public abstract class BaseWordBuilder
|
||||
{
|
||||
public abstract BaseWordBuilder AddHeader(string header);
|
||||
|
||||
public abstract BaseWordBuilder AddParagraph(string text);
|
||||
|
||||
public abstract BaseWordBuilder AddTable(int[] widths, List<string[]> data);
|
||||
|
||||
public abstract Stream Build();
|
||||
}
|
||||
@@ -0,0 +1,86 @@
|
||||
using MigraDoc.DocumentObjectModel;
|
||||
using MigraDoc.DocumentObjectModel.Shapes.Charts;
|
||||
using MigraDoc.Rendering;
|
||||
using System.Text;
|
||||
|
||||
|
||||
namespace CandyHouseBusinessLogic.OfficePackage;
|
||||
|
||||
internal class MigraDocPdfBuilder : BasePdfBuilder
|
||||
{
|
||||
private readonly Document _document;
|
||||
|
||||
public MigraDocPdfBuilder()
|
||||
{
|
||||
Encoding.RegisterProvider(CodePagesEncodingProvider.Instance);
|
||||
_document = new Document();
|
||||
DefineStyles();
|
||||
}
|
||||
|
||||
public override BasePdfBuilder AddHeader(string header)
|
||||
{
|
||||
_document.AddSection().AddParagraph(header, "NormalBold");
|
||||
return this;
|
||||
}
|
||||
|
||||
public override BasePdfBuilder AddParagraph(string text)
|
||||
{
|
||||
_document.LastSection.AddParagraph(text, "Normal");
|
||||
return this;
|
||||
}
|
||||
|
||||
public override BasePdfBuilder AddPieChart(string title, List<(string Caption, double Value)> data)
|
||||
{
|
||||
if (data == null || data.Count == 0)
|
||||
{
|
||||
return this;
|
||||
}
|
||||
|
||||
var chart = new Chart(ChartType.Pie2D);
|
||||
var series = chart.SeriesCollection.AddSeries();
|
||||
series.Add(data.Select(x => x.Value).ToArray());
|
||||
|
||||
var xseries = chart.XValues.AddXSeries();
|
||||
xseries.Add(data.Select(x => x.Caption).ToArray());
|
||||
|
||||
chart.DataLabel.Type = DataLabelType.Value;
|
||||
chart.DataLabel.Position = DataLabelPosition.OutsideEnd;
|
||||
|
||||
chart.Width = Unit.FromCentimeter(16);
|
||||
chart.Height = Unit.FromCentimeter(12);
|
||||
|
||||
chart.TopArea.AddParagraph(title);
|
||||
|
||||
chart.XAxis.MajorTickMark = TickMarkType.Outside;
|
||||
|
||||
chart.YAxis.MajorTickMark = TickMarkType.Outside;
|
||||
chart.YAxis.HasMajorGridlines = true;
|
||||
|
||||
chart.PlotArea.LineFormat.Width = 1;
|
||||
chart.PlotArea.LineFormat.Visible = true;
|
||||
|
||||
chart.TopArea.AddLegend();
|
||||
|
||||
_document.LastSection.Add(chart);
|
||||
|
||||
return this;
|
||||
}
|
||||
|
||||
public override Stream Build()
|
||||
{
|
||||
var stream = new MemoryStream();
|
||||
var renderer = new PdfDocumentRenderer(true)
|
||||
{
|
||||
Document = _document
|
||||
};
|
||||
renderer.RenderDocument();
|
||||
renderer.PdfDocument.Save(stream);
|
||||
return stream;
|
||||
}
|
||||
|
||||
private void DefineStyles()
|
||||
{
|
||||
var style = _document.Styles.AddStyle("NormalBold", "Normal");
|
||||
style.Font.Bold = true;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,303 @@
|
||||
using DocumentFormat.OpenXml.Packaging;
|
||||
using DocumentFormat.OpenXml.Spreadsheet;
|
||||
using DocumentFormat.OpenXml;
|
||||
|
||||
namespace CandyHouseBusinessLogic.OfficePackage;
|
||||
|
||||
internal class OpenXmlExcelBuilder : BaseExcelBuilder
|
||||
{
|
||||
private readonly SheetData _sheetData;
|
||||
|
||||
private readonly MergeCells _mergeCells;
|
||||
|
||||
private readonly Columns _columns;
|
||||
|
||||
private uint _rowIndex = 0;
|
||||
|
||||
public OpenXmlExcelBuilder()
|
||||
{
|
||||
_sheetData = new SheetData();
|
||||
_mergeCells = new MergeCells();
|
||||
_columns = new Columns();
|
||||
_rowIndex = 1;
|
||||
}
|
||||
|
||||
public override BaseExcelBuilder AddHeader(string header, int startIndex, int count)
|
||||
{
|
||||
CreateCell(startIndex, _rowIndex, header, StyleIndex.BoldTextWithoutBorder);
|
||||
for (int i = startIndex + 1; i < startIndex + count; ++i)
|
||||
{
|
||||
CreateCell(i, _rowIndex, "", StyleIndex.SimpleTextWithoutBorder);
|
||||
}
|
||||
|
||||
_mergeCells.Append(new MergeCell()
|
||||
{
|
||||
Reference =
|
||||
new StringValue($"{GetExcelColumnName(startIndex)}{_rowIndex}:{GetExcelColumnName(startIndex + count - 1)}{_rowIndex}")
|
||||
});
|
||||
|
||||
_rowIndex++;
|
||||
return this;
|
||||
}
|
||||
|
||||
public override BaseExcelBuilder AddParagraph(string text, int columnIndex)
|
||||
{
|
||||
CreateCell(columnIndex, _rowIndex++, text, StyleIndex.SimpleTextWithoutBorder);
|
||||
return this;
|
||||
}
|
||||
|
||||
public override BaseExcelBuilder AddTable(int[] columnsWidths, List<string[]> data)
|
||||
{
|
||||
if (columnsWidths == null || columnsWidths.Length == 0)
|
||||
{
|
||||
throw new ArgumentNullException(nameof(columnsWidths));
|
||||
}
|
||||
|
||||
if (data == null || data.Count == 0)
|
||||
{
|
||||
throw new ArgumentNullException(nameof(data));
|
||||
}
|
||||
|
||||
if (data.Any(x => x.Length != columnsWidths.Length))
|
||||
{
|
||||
throw new InvalidOperationException("widths.Length != data.Length");
|
||||
}
|
||||
|
||||
uint counter = 1;
|
||||
int coef = 2;
|
||||
_columns.Append(columnsWidths.Select(x => new Column
|
||||
{
|
||||
Min = counter,
|
||||
Max = counter++,
|
||||
Width = x * coef,
|
||||
CustomWidth = true
|
||||
}));
|
||||
|
||||
for (var j = 0; j < data.First().Length; ++j)
|
||||
{
|
||||
CreateCell(j, _rowIndex, data.First()[j], StyleIndex.BoldTextWithBorder);
|
||||
}
|
||||
|
||||
_rowIndex++;
|
||||
for (var i = 1; i < data.Count - 1; ++i)
|
||||
{
|
||||
for (var j = 0; j < data[i].Length; ++j)
|
||||
{
|
||||
CreateCell(j, _rowIndex, data[i][j], StyleIndex.SimpleTextWithBorder);
|
||||
}
|
||||
|
||||
_rowIndex++;
|
||||
}
|
||||
|
||||
for (var j = 0; j < data.Last().Length; ++j)
|
||||
{
|
||||
CreateCell(j, _rowIndex, data.Last()[j], StyleIndex.BoldTextWithBorder);
|
||||
}
|
||||
|
||||
_rowIndex++;
|
||||
return this;
|
||||
}
|
||||
|
||||
public override Stream Build()
|
||||
{
|
||||
var stream = new MemoryStream();
|
||||
using var spreadsheetDocument = SpreadsheetDocument.Create(stream, SpreadsheetDocumentType.Workbook);
|
||||
var workbookpart = spreadsheetDocument.AddWorkbookPart();
|
||||
GenerateStyle(workbookpart);
|
||||
workbookpart.Workbook = new Workbook();
|
||||
var worksheetPart = workbookpart.AddNewPart<WorksheetPart>();
|
||||
worksheetPart.Worksheet = new Worksheet();
|
||||
if (_columns.HasChildren)
|
||||
{
|
||||
worksheetPart.Worksheet.Append(_columns);
|
||||
}
|
||||
|
||||
worksheetPart.Worksheet.Append(_sheetData);
|
||||
var sheets = spreadsheetDocument.WorkbookPart!.Workbook.AppendChild(new Sheets());
|
||||
var sheet = new Sheet()
|
||||
{
|
||||
Id = spreadsheetDocument.WorkbookPart.GetIdOfPart(worksheetPart),
|
||||
SheetId = 1,
|
||||
Name = "Лист 1"
|
||||
};
|
||||
|
||||
sheets.Append(sheet);
|
||||
if (_mergeCells.HasChildren)
|
||||
{
|
||||
worksheetPart.Worksheet.InsertAfter(_mergeCells, worksheetPart.Worksheet.Elements<SheetData>().First());
|
||||
}
|
||||
return stream;
|
||||
}
|
||||
|
||||
private static void GenerateStyle(WorkbookPart workbookPart)
|
||||
{
|
||||
var workbookStylesPart = workbookPart.AddNewPart<WorkbookStylesPart>();
|
||||
workbookStylesPart.Stylesheet = new Stylesheet();
|
||||
|
||||
var fonts = new Fonts() { Count = 2, KnownFonts = BooleanValue.FromBoolean(true) };
|
||||
fonts.Append(new DocumentFormat.OpenXml.Spreadsheet.Font
|
||||
{
|
||||
FontSize = new FontSize() { Val = 11 },
|
||||
FontName = new FontName() { Val = "Calibri" },
|
||||
FontFamilyNumbering = new FontFamilyNumbering() { Val = 2 },
|
||||
FontScheme = new FontScheme() { Val = new EnumValue<FontSchemeValues>(FontSchemeValues.Minor) }
|
||||
});
|
||||
fonts.Append(new DocumentFormat.OpenXml.Spreadsheet.Font
|
||||
{
|
||||
FontSize = new FontSize() { Val = 11 },
|
||||
FontName = new FontName() { Val = "Calibri" },
|
||||
FontFamilyNumbering = new FontFamilyNumbering() { Val = 2 },
|
||||
FontScheme = new FontScheme() { Val = new EnumValue<FontSchemeValues>(FontSchemeValues.Minor) },
|
||||
Bold = new Bold()
|
||||
});
|
||||
workbookStylesPart.Stylesheet.Append(fonts);
|
||||
|
||||
// Default Fill
|
||||
var fills = new Fills() { Count = 1 };
|
||||
fills.Append(new Fill
|
||||
{
|
||||
PatternFill = new PatternFill() { PatternType = new EnumValue<PatternValues>(PatternValues.None) }
|
||||
});
|
||||
workbookStylesPart.Stylesheet.Append(fills);
|
||||
|
||||
// Default Border
|
||||
var borders = new Borders() { Count = 2 };
|
||||
borders.Append(new Border
|
||||
{
|
||||
LeftBorder = new LeftBorder(),
|
||||
RightBorder = new RightBorder(),
|
||||
TopBorder = new TopBorder(),
|
||||
BottomBorder = new BottomBorder(),
|
||||
DiagonalBorder = new DiagonalBorder()
|
||||
});
|
||||
borders.Append(new Border
|
||||
{
|
||||
LeftBorder = new LeftBorder() { Style = BorderStyleValues.Thin },
|
||||
RightBorder = new RightBorder() { Style = BorderStyleValues.Thin },
|
||||
TopBorder = new TopBorder() { Style = BorderStyleValues.Thin },
|
||||
BottomBorder = new BottomBorder() { Style = BorderStyleValues.Thin }
|
||||
});
|
||||
workbookStylesPart.Stylesheet.Append(borders);
|
||||
|
||||
// Default cell format and a date cell format
|
||||
var cellFormats = new CellFormats() { Count = 4 };
|
||||
cellFormats.Append(new CellFormat
|
||||
{
|
||||
NumberFormatId = 0,
|
||||
FormatId = 0,
|
||||
FontId = 0,
|
||||
BorderId = 0,
|
||||
FillId = 0,
|
||||
Alignment = new Alignment()
|
||||
{
|
||||
Horizontal = HorizontalAlignmentValues.Left,
|
||||
Vertical = VerticalAlignmentValues.Center,
|
||||
WrapText = true
|
||||
}
|
||||
});
|
||||
cellFormats.Append(new CellFormat
|
||||
{
|
||||
NumberFormatId = 0,
|
||||
FormatId = 0,
|
||||
FontId = 0,
|
||||
BorderId = 1,
|
||||
FillId = 0,
|
||||
Alignment = new Alignment()
|
||||
{
|
||||
Horizontal = HorizontalAlignmentValues.Left,
|
||||
Vertical = VerticalAlignmentValues.Center,
|
||||
WrapText = true
|
||||
}
|
||||
});
|
||||
cellFormats.Append(new CellFormat
|
||||
{
|
||||
NumberFormatId = 0,
|
||||
FormatId = 0,
|
||||
FontId = 1,
|
||||
BorderId = 0,
|
||||
FillId = 0,
|
||||
Alignment = new Alignment()
|
||||
{
|
||||
Horizontal = HorizontalAlignmentValues.Center,
|
||||
Vertical = VerticalAlignmentValues.Center,
|
||||
WrapText = true
|
||||
}
|
||||
});
|
||||
cellFormats.Append(new CellFormat
|
||||
{
|
||||
NumberFormatId = 0,
|
||||
FormatId = 0,
|
||||
FontId = 1,
|
||||
BorderId = 1,
|
||||
FillId = 0,
|
||||
Alignment = new Alignment()
|
||||
{
|
||||
Horizontal = HorizontalAlignmentValues.Center,
|
||||
Vertical = VerticalAlignmentValues.Center,
|
||||
WrapText = true
|
||||
}
|
||||
});
|
||||
workbookStylesPart.Stylesheet.Append(cellFormats);
|
||||
}
|
||||
|
||||
private enum StyleIndex
|
||||
{
|
||||
SimpleTextWithoutBorder = 0,
|
||||
SimpleTextWithBorder = 1,
|
||||
BoldTextWithoutBorder = 2,
|
||||
BoldTextWithBorder = 3
|
||||
}
|
||||
|
||||
private void CreateCell(int columnIndex, uint rowIndex, string text, StyleIndex styleIndex)
|
||||
{
|
||||
var columnName = GetExcelColumnName(columnIndex);
|
||||
var cellReference = columnName + rowIndex;
|
||||
var row = _sheetData.Elements<Row>().FirstOrDefault(r => r.RowIndex! == rowIndex);
|
||||
if (row == null)
|
||||
{
|
||||
row = new Row() { RowIndex = rowIndex };
|
||||
_sheetData.Append(row);
|
||||
}
|
||||
|
||||
var newCell = row.Elements<Cell>()
|
||||
.FirstOrDefault(c => c.CellReference != null && c.CellReference.Value == columnName + rowIndex);
|
||||
if (newCell == null)
|
||||
{
|
||||
Cell? refCell = null;
|
||||
foreach (Cell cell in row.Elements<Cell>())
|
||||
{
|
||||
if (cell.CellReference?.Value != null && cell.CellReference.Value.Length == cellReference.Length)
|
||||
{
|
||||
if (string.Compare(cell.CellReference.Value, cellReference, true) > 0)
|
||||
{
|
||||
refCell = cell;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
newCell = new Cell() { CellReference = cellReference };
|
||||
row.InsertBefore(newCell, refCell);
|
||||
}
|
||||
|
||||
newCell.CellValue = new CellValue(text);
|
||||
newCell.DataType = CellValues.String;
|
||||
newCell.StyleIndex = (uint)styleIndex;
|
||||
}
|
||||
|
||||
private static string GetExcelColumnName(int columnNumber)
|
||||
{
|
||||
columnNumber += 1;
|
||||
int dividend = columnNumber;
|
||||
string columnName = string.Empty;
|
||||
int modulo;
|
||||
|
||||
while (dividend > 0)
|
||||
{
|
||||
modulo = (dividend - 1) % 26;
|
||||
columnName = Convert.ToChar(65 + modulo).ToString() + columnName;
|
||||
dividend = (dividend - modulo) / 26;
|
||||
}
|
||||
|
||||
return columnName;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,94 @@
|
||||
using DocumentFormat.OpenXml;
|
||||
using DocumentFormat.OpenXml.Packaging;
|
||||
using DocumentFormat.OpenXml.Wordprocessing;
|
||||
|
||||
namespace CandyHouseBusinessLogic.OfficePackage;
|
||||
|
||||
internal class OpenXmlWordBuilder : BaseWordBuilder
|
||||
{
|
||||
private readonly Document _document;
|
||||
|
||||
private readonly Body _body;
|
||||
|
||||
public OpenXmlWordBuilder()
|
||||
{
|
||||
_document = new Document();
|
||||
_body = _document.AppendChild(new Body());
|
||||
}
|
||||
|
||||
public override BaseWordBuilder AddHeader(string header)
|
||||
{
|
||||
var paragraph = _body.AppendChild(new Paragraph());
|
||||
var run = paragraph.AppendChild(new Run());
|
||||
run.AppendChild(new RunProperties(new Bold()));
|
||||
run.AppendChild(new Text(header));
|
||||
|
||||
return this;
|
||||
}
|
||||
|
||||
public override BaseWordBuilder AddParagraph(string text)
|
||||
{
|
||||
var paragraph = _body.AppendChild(new Paragraph());
|
||||
var run = paragraph.AppendChild(new Run());
|
||||
run.AppendChild(new Text(text));
|
||||
|
||||
return this;
|
||||
}
|
||||
|
||||
public override BaseWordBuilder AddTable(int[] widths, List<string[]> data)
|
||||
{
|
||||
if (widths == null || widths.Length == 0)
|
||||
{
|
||||
throw new ArgumentNullException(nameof(widths));
|
||||
}
|
||||
|
||||
if (data == null || data.Count == 0)
|
||||
{
|
||||
throw new ArgumentNullException(nameof(data));
|
||||
}
|
||||
|
||||
if (data.Any(x => x.Length != widths.Length))
|
||||
{
|
||||
throw new InvalidOperationException("widths.Length != data.Length");
|
||||
}
|
||||
|
||||
var table = new Table();
|
||||
table.AppendChild(new TableProperties(
|
||||
new TableBorders(
|
||||
new TopBorder() { Val = new EnumValue<BorderValues>(BorderValues.Single), Size = 12 },
|
||||
new BottomBorder() { Val = new EnumValue<BorderValues>(BorderValues.Single), Size = 12 },
|
||||
new LeftBorder() { Val = new EnumValue<BorderValues>(BorderValues.Single), Size = 12 },
|
||||
new RightBorder() { Val = new EnumValue<BorderValues>(BorderValues.Single), Size = 12 },
|
||||
new InsideHorizontalBorder() { Val = new EnumValue<BorderValues>(BorderValues.Single), Size = 12 },
|
||||
new InsideVerticalBorder() { Val = new EnumValue<BorderValues>(BorderValues.Single), Size = 12 }
|
||||
)
|
||||
));
|
||||
|
||||
// Заголовок
|
||||
var tr = new TableRow();
|
||||
for (var j = 0; j < widths.Length; ++j)
|
||||
{
|
||||
tr.Append(new TableCell(
|
||||
new TableCellProperties(new TableCellWidth() { Width = widths[j].ToString() }),
|
||||
new Paragraph(new Run(new RunProperties(new Bold()), new Text(data.First()[j])))));
|
||||
}
|
||||
table.Append(tr);
|
||||
|
||||
// Данные
|
||||
table.Append(data.Skip(1).Select(x =>
|
||||
new TableRow(x.Select(y => new TableCell(new Paragraph(new Run(new Text(y))))))));
|
||||
|
||||
_body.Append(table);
|
||||
|
||||
return this;
|
||||
}
|
||||
|
||||
public override Stream Build()
|
||||
{
|
||||
var stream = new MemoryStream();
|
||||
using var wordDocument = WordprocessingDocument.Create(stream, WordprocessingDocumentType.Document);
|
||||
var mainPart = wordDocument.AddMainDocumentPart();
|
||||
mainPart.Document = _document;
|
||||
return stream;
|
||||
}
|
||||
}
|
||||
@@ -1,22 +0,0 @@
|
||||
using CandyHouseContracts.AdapterContracts.OperationResponses;
|
||||
using CandyHouseContracts.BindingModels;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace CandyHouseContracts.AdapterContracts;
|
||||
|
||||
public interface IClientAdapter
|
||||
{
|
||||
ClientOperationResponse GetList();
|
||||
|
||||
ClientOperationResponse GetElement(string data);
|
||||
|
||||
ClientOperationResponse RegisterClient(ClientBindingModel clientModel);
|
||||
|
||||
ClientOperationResponse ChangeClientInfo(ClientBindingModel clientModel);
|
||||
|
||||
ClientOperationResponse RemoveClient(string id);
|
||||
}
|
||||
@@ -0,0 +1,22 @@
|
||||
|
||||
using CandyHouseContracts.AdapterContracts.OperationResponses;
|
||||
using CandyHouseContracts.BindingModels;
|
||||
|
||||
namespace CandyHouseContracts.AdapterContracts;
|
||||
|
||||
public interface IIngredientAdapter
|
||||
{
|
||||
IngredientOperationResponse GetList(bool includeDeleted);
|
||||
|
||||
IngredientOperationResponse GetManufacturerList(string id, bool includeDeleted);
|
||||
|
||||
IngredientOperationResponse GetHistory(string id);
|
||||
|
||||
IngredientOperationResponse GetElement(string data);
|
||||
|
||||
IngredientOperationResponse RegisterIngredient(IngredientBindingModel productModel);
|
||||
|
||||
IngredientOperationResponse ChangeIngredientInfo(IngredientBindingModel productModel);
|
||||
|
||||
IngredientOperationResponse RemoveIngredient(string id);
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
using CandyHouseContracts.AdapterContracts.OperationResponses;
|
||||
using CandyHouseContracts.BindingModels;
|
||||
|
||||
namespace CandyHouseContracts.AdapterContracts;
|
||||
|
||||
public interface ICustomerAdapter
|
||||
{
|
||||
CustomerOperationResponse GetList();
|
||||
|
||||
CustomerOperationResponse GetElement(string data);
|
||||
|
||||
CustomerOperationResponse RegisterCustomer(CustomerBindingModel customerModel);
|
||||
|
||||
CustomerOperationResponse ChangeCustomerInfo(CustomerBindingModel customerModel);
|
||||
|
||||
CustomerOperationResponse RemoveCustomer(string id);
|
||||
}
|
||||
@@ -1,28 +0,0 @@
|
||||
using CandyHouseContracts.AdapterContracts.OperationResponses;
|
||||
using CandyHouseContracts.BindingModels;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace CandyHouseContracts.AdapterContracts;
|
||||
|
||||
public interface IEmployeeAdapter
|
||||
{
|
||||
EmployeeOperationResponse GetList(bool includeDeleted);
|
||||
|
||||
EmployeeOperationResponse GetPostList(string id, bool includeDeleted);
|
||||
|
||||
EmployeeOperationResponse GetListByBirthDate(DateTime fromDate, DateTime toDate, bool includeDeleted);
|
||||
|
||||
EmployeeOperationResponse GetListByEmploymentDate(DateTime fromDate, DateTime toDate, bool includeDeleted);
|
||||
|
||||
EmployeeOperationResponse GetElement(string data);
|
||||
|
||||
EmployeeOperationResponse RegisterEmployee(EmployeeBindingModel employeeModel);
|
||||
|
||||
EmployeeOperationResponse ChangeEmployeeInfo(EmployeeBindingModel employeeModel);
|
||||
|
||||
EmployeeOperationResponse RemoveEmployee(string id);
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
using CandyHouseContracts.AdapterContracts.OperationResponses;
|
||||
using CandyHouseContracts.BindingModels;
|
||||
|
||||
namespace CandyHouseContracts.AdapterContracts;
|
||||
|
||||
public interface IManufacturerAdapter
|
||||
{
|
||||
ManufacturerOperationResponse GetList();
|
||||
|
||||
ManufacturerOperationResponse GetElement(string data);
|
||||
|
||||
ManufacturerOperationResponse RegisterManufacturer(ManufacturerBindingModel manufacturerModel);
|
||||
|
||||
ManufacturerOperationResponse ChangeManufacturerInfo(ManufacturerBindingModel manufacturerModel);
|
||||
|
||||
ManufacturerOperationResponse RemoveManufacturer(string id);
|
||||
}
|
||||
@@ -1,10 +1,5 @@
|
||||
using CandyHouseContracts.AdapterContracts.OperationResponses;
|
||||
using CandyHouseContracts.AdapterContracts.OperationResponses;
|
||||
using CandyHouseContracts.BindingModels;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace CandyHouseContracts.AdapterContracts;
|
||||
|
||||
@@ -23,4 +18,4 @@ public interface IPostAdapter
|
||||
PostOperationResponse RemovePost(string id);
|
||||
|
||||
PostOperationResponse RestorePost(string id);
|
||||
}
|
||||
}
|
||||
@@ -1,18 +1,12 @@
|
||||
using CandyHouseContracts.AdapterContracts.OperationResponses;
|
||||
using CandyHouseContracts.AdapterContracts.OperationResponses;
|
||||
using CandyHouseContracts.BindingModels;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using CandyHouseContracts.DataModels;
|
||||
|
||||
namespace CandyHouseContracts.AdapterContracts;
|
||||
|
||||
public interface IProductAdapter
|
||||
{
|
||||
ProductOperationResponse GetList(bool includeDeleted);
|
||||
|
||||
ProductOperationResponse GetHistory(string id);
|
||||
ProductOperationResponse GetList(bool onlyActive = true);
|
||||
|
||||
ProductOperationResponse GetElement(string data);
|
||||
|
||||
@@ -21,4 +15,10 @@ public interface IProductAdapter
|
||||
ProductOperationResponse ChangeProductInfo(ProductBindingModel productModel);
|
||||
|
||||
ProductOperationResponse RemoveProduct(string id);
|
||||
}
|
||||
|
||||
ProductOperationResponse GetIngredientsList(string id);
|
||||
|
||||
ProductOperationResponse AddIngredient(string productId, IngredientBindingModel ingredient);
|
||||
|
||||
ProductOperationResponse RemoveIngredient(string productId, string ingredientId);
|
||||
}
|
||||
@@ -0,0 +1,32 @@
|
||||
using CandyHouseContracts.AdapterContracts.OperationResponses;
|
||||
using CandyHouseContracts.DataModels;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace CandyHouseContracts.AdapterContracts;
|
||||
|
||||
public interface IReportAdapter
|
||||
{
|
||||
Task<ReportOperationResponse> GetDataIngredientsWithHistoryAsync(CancellationToken ct); // Переименовал
|
||||
|
||||
Task<ReportOperationResponse> GetDataSalaryByPeriodAsync(DateTime dateStart, DateTime dateFinish, CancellationToken ct);
|
||||
|
||||
Task<ReportOperationResponse> GetDataSaleByPeriodAsync(DateTime dateStart, DateTime dateFinish, CancellationToken ct);
|
||||
|
||||
Task<ReportOperationResponse> CreateDocumentIngredientsWithHistoryAsync(CancellationToken ct); // Переименовал
|
||||
|
||||
Task<ReportOperationResponse> CreateDocumentSalesByPeriodAsync(DateTime dateStart, DateTime dateFinish, CancellationToken ct);
|
||||
|
||||
Task<ReportOperationResponse> CreateDocumentSalaryByPeriodAsync(DateTime dateStart, DateTime dateFinish, CancellationToken ct);
|
||||
// таски для харда
|
||||
Task<ReportOperationResponse> GetDataSupplyAsync(DateTime dateStart, DateTime dateFinish, CancellationToken ct);
|
||||
|
||||
Task<ReportOperationResponse> GetDataIngredientMovementAsync(DateTime dateStart, DateTime dateFinish, CancellationToken ct);
|
||||
|
||||
Task<ReportOperationResponse> GetDataStorageStockAsync(string storageId, CancellationToken ct);
|
||||
|
||||
Task<ReportOperationResponse> CreateDocumentSupplyAsync(DateTime dateStart, DateTime dateFinish, CancellationToken ct);
|
||||
|
||||
Task<ReportOperationResponse> CreateDocumentIngredientMovementAsync(DateTime dateStart, DateTime dateFinish, CancellationToken ct);
|
||||
|
||||
Task<ReportOperationResponse> CreateDocumentStorageStockAsync(string storageId, CancellationToken ct);
|
||||
}
|
||||
@@ -1,15 +1,13 @@
|
||||
using CandyHouseContracts.AdapterContracts.OperationResponses;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using CandyHouseContracts.AdapterContracts.OperationResponses;
|
||||
using CandyHouseContracts.BindingModels;
|
||||
|
||||
namespace CandyHouseContracts.AdapterContracts;
|
||||
|
||||
public interface ISalaryAdapter
|
||||
{
|
||||
SalaryOperationResponse GetListByPeriod(DateTime fromDate, DateTime toDate);
|
||||
SalaryOperationResponse GetListByPeriodByEmployee(DateTime fromDate, DateTime toDate, string employeeId);
|
||||
|
||||
SalaryOperationResponse GetListByPeriodByWorker(DateTime fromDate, DateTime toDate, string workerId);
|
||||
|
||||
SalaryOperationResponse CalculateSalary(DateTime date);
|
||||
}
|
||||
@@ -1,26 +1,15 @@
|
||||
using CandyHouseContracts.AdapterContracts.OperationResponses;
|
||||
using CandyHouseContracts.AdapterContracts.OperationResponses;
|
||||
using CandyHouseContracts.BindingModels;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace CandyHouseContracts.AdapterContracts;
|
||||
|
||||
public interface ISaleAdapter
|
||||
{
|
||||
SaleOperationResponse GetList(DateTime fromDate, DateTime toDate);
|
||||
|
||||
SaleOperationResponse GetEmployeeList(string id, DateTime fromDate, DateTime toDate);
|
||||
|
||||
SaleOperationResponse GetClientList(string id, DateTime fromDate, DateTime toDate);
|
||||
|
||||
SaleOperationResponse GetWorkerList(string id, DateTime fromDate, DateTime toDate);
|
||||
SaleOperationResponse GetCustomerList(string id, DateTime fromDate, DateTime toDate);
|
||||
SaleOperationResponse GetProductList(string id, DateTime fromDate, DateTime toDate);
|
||||
|
||||
SaleOperationResponse GetElement(string id);
|
||||
|
||||
SaleOperationResponse MakeSale(SaleBindingModel saleModel);
|
||||
|
||||
SaleOperationResponse CancelSale(string id);
|
||||
}
|
||||
@@ -1,18 +1,13 @@
|
||||
using CandyHouseContracts.AdapterContracts.OperationResponses;
|
||||
using CandyHouseContracts.BindingModels;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace CandyHouseContracts.AdapterContracts;
|
||||
|
||||
public interface IStorageAdapter
|
||||
{
|
||||
StorageOperationResponse GetAllComponents();
|
||||
StorageOperationResponse GetComponentByData(string data);
|
||||
StorageOperationResponse InsertComponent(StorageBindingModel warehouseDataModel);
|
||||
StorageOperationResponse UpdateComponent(StorageBindingModel warehouseDataModel);
|
||||
StorageOperationResponse DeleteComponent(string id);
|
||||
}
|
||||
StorageOperationResponse GetList();
|
||||
StorageOperationResponse GetElement(string id);
|
||||
StorageOperationResponse RegisterStorage(StorageBindingModel storageModel);
|
||||
StorageOperationResponse UpdateStorage(StorageBindingModel storageModel);
|
||||
StorageOperationResponse AddOrUpdateIngredient(StorageIngredientBindingModel ingredientModel);
|
||||
}
|
||||
@@ -1,17 +0,0 @@
|
||||
using CandyHouseContracts.AdapterContracts.OperationResponses;
|
||||
using CandyHouseContracts.BindingModels;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace CandyHouseContracts.AdapterContracts;
|
||||
|
||||
public interface ISuppliesAdapter
|
||||
{
|
||||
SuppliesOperationResponse GetAllComponents();
|
||||
SuppliesOperationResponse GetComponentByData(string data);
|
||||
SuppliesOperationResponse InsertComponent(SuppliesBindingModel componentDataModel);
|
||||
SuppliesOperationResponse UpdateComponent(SuppliesBindingModel componentDataModel);
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
using CandyHouseContracts.AdapterContracts.OperationResponses;
|
||||
using CandyHouseContracts.BindingModels;
|
||||
|
||||
namespace CandyHouseContracts.AdapterContracts;
|
||||
|
||||
public interface ISupplyAdapter
|
||||
{
|
||||
SupplyOperationResponse GetList();
|
||||
SupplyOperationResponse GetElement(string id);
|
||||
SupplyOperationResponse RegisterSupply(SupplyBindingModel supplyModel);
|
||||
SupplyOperationResponse GetSuppliesByStorage(string storageId);
|
||||
SupplyOperationResponse AddOrUpdateIngredient(SupplyIngredientBindingModel ingredientModel);
|
||||
SupplyOperationResponse UpdateIngredientCount(string supplyId, string ingredientId, int newCount);
|
||||
SupplyOperationResponse RemoveIngredient(string supplyId, string ingredientId);
|
||||
}
|
||||
@@ -0,0 +1,23 @@
|
||||
using CandyHouseContracts.AdapterContracts.OperationResponses;
|
||||
using CandyHouseContracts.BindingModels;
|
||||
|
||||
namespace CandyHouseContracts.AdapterContracts;
|
||||
|
||||
public interface IWorkerAdapter
|
||||
{
|
||||
WorkerOperationResponse GetList(bool includeDeleted);
|
||||
|
||||
WorkerOperationResponse GetPostList(string id, bool includeDeleted);
|
||||
|
||||
WorkerOperationResponse GetListByBirthDate(DateTime fromDate, DateTime toDate, bool includeDeleted);
|
||||
|
||||
WorkerOperationResponse GetListByEmploymentDate(DateTime fromDate, DateTime toDate, bool includeDeleted);
|
||||
|
||||
WorkerOperationResponse GetElement(string data);
|
||||
|
||||
WorkerOperationResponse RegisterWorker(WorkerBindingModel workerModel);
|
||||
|
||||
WorkerOperationResponse ChangeWorkerInfo(WorkerBindingModel workerModel);
|
||||
|
||||
WorkerOperationResponse RemoveWorker(string id);
|
||||
}
|
||||
@@ -1,24 +0,0 @@
|
||||
using CandyHouseContracts.Infrastructure;
|
||||
using CandyHouseContracts.ViewModels;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace CandyHouseContracts.AdapterContracts.OperationResponses;
|
||||
|
||||
public class ClientOperationResponse : OperationResponse
|
||||
{
|
||||
public static ClientOperationResponse OK(List<ClientViewModel> data) => OK<ClientOperationResponse, List<ClientViewModel>>(data);
|
||||
|
||||
public static ClientOperationResponse OK(ClientViewModel data) => OK<ClientOperationResponse, ClientViewModel>(data);
|
||||
|
||||
public static ClientOperationResponse NoContent() => NoContent<ClientOperationResponse>();
|
||||
|
||||
public static ClientOperationResponse BadRequest(string message) => BadRequest<ClientOperationResponse>(message);
|
||||
|
||||
public static ClientOperationResponse NotFound(string message) => NotFound<ClientOperationResponse>(message);
|
||||
|
||||
public static ClientOperationResponse InternalServerError(string message) => InternalServerError<ClientOperationResponse>(message);
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
using CandyHouseContracts.Infrastructure;
|
||||
using CandyHouseContracts.ViewModels;
|
||||
|
||||
namespace CandyHouseContracts.AdapterContracts.OperationResponses;
|
||||
|
||||
public class CustomerOperationResponse : OperationResponse
|
||||
{
|
||||
public static CustomerOperationResponse OK(List<CustomerViewModel> data) => OK<CustomerOperationResponse, List<CustomerViewModel>>(data);
|
||||
|
||||
public static CustomerOperationResponse OK(CustomerViewModel data) => OK<CustomerOperationResponse, CustomerViewModel>(data);
|
||||
|
||||
public static CustomerOperationResponse NoContent() => NoContent<CustomerOperationResponse>();
|
||||
|
||||
public static CustomerOperationResponse BadRequest(string message) => BadRequest<CustomerOperationResponse>(message);
|
||||
|
||||
public static CustomerOperationResponse NotFound(string message) => NotFound<CustomerOperationResponse>(message);
|
||||
|
||||
public static CustomerOperationResponse InternalServerError(string message) => InternalServerError<CustomerOperationResponse>(message);
|
||||
}
|
||||
@@ -1,24 +0,0 @@
|
||||
using CandyHouseContracts.Infrastructure;
|
||||
using CandyHouseContracts.ViewModels;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace CandyHouseContracts.AdapterContracts.OperationResponses;
|
||||
|
||||
public class EmployeeOperationResponse : OperationResponse
|
||||
{
|
||||
public static EmployeeOperationResponse OK(List<EmployeeViewModel> data) => OK<EmployeeOperationResponse, List<EmployeeViewModel>>(data);
|
||||
|
||||
public static EmployeeOperationResponse OK(EmployeeViewModel data) => OK<EmployeeOperationResponse, EmployeeViewModel>(data);
|
||||
|
||||
public static EmployeeOperationResponse NoContent() => NoContent<EmployeeOperationResponse>();
|
||||
|
||||
public static EmployeeOperationResponse NotFound(string message) => NotFound<EmployeeOperationResponse>(message);
|
||||
|
||||
public static EmployeeOperationResponse BadRequest(string message) => BadRequest<EmployeeOperationResponse>(message);
|
||||
|
||||
public static EmployeeOperationResponse InternalServerError(string message) => InternalServerError<EmployeeOperationResponse>(message);
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
using CandyHouseContracts.Infrastructure;
|
||||
using CandyHouseContracts.ViewModels;
|
||||
|
||||
namespace CandyHouseContracts.AdapterContracts.OperationResponses;
|
||||
|
||||
public class IngredientOperationResponse : OperationResponse
|
||||
{
|
||||
public static IngredientOperationResponse OK(List<IngredientViewModel> data) => OK<IngredientOperationResponse, List<IngredientViewModel>>(data);
|
||||
|
||||
public static IngredientOperationResponse OK(List<IngredientHistoryViewModel> data) => OK<IngredientOperationResponse, List<IngredientHistoryViewModel>>(data);
|
||||
|
||||
public static IngredientOperationResponse OK(IngredientViewModel data) => OK<IngredientOperationResponse, IngredientViewModel>(data);
|
||||
|
||||
public static IngredientOperationResponse NoContent() => NoContent<IngredientOperationResponse>();
|
||||
|
||||
public static IngredientOperationResponse NotFound(string message) => NotFound<IngredientOperationResponse>(message);
|
||||
|
||||
public static IngredientOperationResponse BadRequest(string message) => BadRequest<IngredientOperationResponse>(message);
|
||||
|
||||
public static IngredientOperationResponse InternalServerError(string message) => InternalServerError<IngredientOperationResponse>(message);
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
using CandyHouseContracts.Infrastructure;
|
||||
using CandyHouseContracts.ViewModels;
|
||||
|
||||
namespace CandyHouseContracts.AdapterContracts.OperationResponses;
|
||||
|
||||
public class ManufacturerOperationResponse : OperationResponse
|
||||
{
|
||||
public static ManufacturerOperationResponse OK(List<ManufacturerViewModel> data) => OK<ManufacturerOperationResponse, List<ManufacturerViewModel>>(data);
|
||||
|
||||
public static ManufacturerOperationResponse OK(ManufacturerViewModel data) => OK<ManufacturerOperationResponse, ManufacturerViewModel>(data);
|
||||
|
||||
public static ManufacturerOperationResponse NoContent() => NoContent<ManufacturerOperationResponse>();
|
||||
|
||||
public static ManufacturerOperationResponse NotFound(string message) => NotFound<ManufacturerOperationResponse>(message);
|
||||
|
||||
public static ManufacturerOperationResponse BadRequest(string message) => BadRequest<ManufacturerOperationResponse>(message);
|
||||
|
||||
public static ManufacturerOperationResponse InternalServerError(string message) => InternalServerError<ManufacturerOperationResponse>(message);
|
||||
}
|
||||
@@ -1,10 +1,5 @@
|
||||
using CandyHouseContracts.Infrastructure;
|
||||
using CandyHouseContracts.Infrastructure;
|
||||
using CandyHouseContracts.ViewModels;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace CandyHouseContracts.AdapterContracts.OperationResponses;
|
||||
|
||||
@@ -21,4 +16,4 @@ public class PostOperationResponse : OperationResponse
|
||||
public static PostOperationResponse BadRequest(string message) => BadRequest<PostOperationResponse>(message);
|
||||
|
||||
public static PostOperationResponse InternalServerError(string message) => InternalServerError<PostOperationResponse>(message);
|
||||
}
|
||||
}
|
||||
@@ -1,26 +1,28 @@
|
||||
using CandyHouseContracts.Infrastructure;
|
||||
using CandyHouseContracts.Infrastructure;
|
||||
using CandyHouseContracts.ViewModels;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace CandyHouseContracts.AdapterContracts.OperationResponses;
|
||||
|
||||
public class ProductOperationResponse : OperationResponse
|
||||
{
|
||||
public static ProductOperationResponse OK(List<ProductViewModel> data) => OK<ProductOperationResponse, List<ProductViewModel>>(data);
|
||||
public static ProductOperationResponse OK(List<ProductViewModel> data)
|
||||
=> OK<ProductOperationResponse, List<ProductViewModel>>(data);
|
||||
|
||||
public static ProductOperationResponse OK(List<ProductHistoryViewModel> data) => OK<ProductOperationResponse, List<ProductHistoryViewModel>>(data);
|
||||
public static ProductOperationResponse OK(List<IngredientViewModel> data)
|
||||
=> OK<ProductOperationResponse, List<IngredientViewModel>>(data);
|
||||
|
||||
public static ProductOperationResponse OK(ProductViewModel data) => OK<ProductOperationResponse, ProductViewModel>(data);
|
||||
public static ProductOperationResponse OK(ProductViewModel data)
|
||||
=> OK<ProductOperationResponse, ProductViewModel>(data);
|
||||
|
||||
public static ProductOperationResponse NoContent() => NoContent<ProductOperationResponse>();
|
||||
public static ProductOperationResponse NoContent()
|
||||
=> NoContent<ProductOperationResponse>();
|
||||
|
||||
public static ProductOperationResponse NotFound(string message) => NotFound<ProductOperationResponse>(message);
|
||||
public static ProductOperationResponse NotFound(string message)
|
||||
=> NotFound<ProductOperationResponse>(message);
|
||||
|
||||
public static ProductOperationResponse BadRequest(string message) => BadRequest<ProductOperationResponse>(message);
|
||||
public static ProductOperationResponse BadRequest(string message)
|
||||
=> BadRequest<ProductOperationResponse>(message);
|
||||
|
||||
public static ProductOperationResponse InternalServerError(string message) => InternalServerError<ProductOperationResponse>(message);
|
||||
}
|
||||
public static ProductOperationResponse InternalServerError(string message)
|
||||
=> InternalServerError<ProductOperationResponse>(message);
|
||||
}
|
||||
@@ -0,0 +1,30 @@
|
||||
using CandyHouseContracts.Infrastructure;
|
||||
using CandyHouseContracts.ViewModels;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace CandyHouseContracts.AdapterContracts.OperationResponses;
|
||||
|
||||
public class ReportOperationResponse : OperationResponse
|
||||
{
|
||||
public static ReportOperationResponse OK(List<IngredientWithHistoryViewModel> data) => OK<ReportOperationResponse, List<IngredientWithHistoryViewModel>>(data); // Новый метод
|
||||
|
||||
public static ReportOperationResponse OK(Stream data, string fileName) => OK<ReportOperationResponse, Stream>(data, fileName);
|
||||
|
||||
public static ReportOperationResponse OK(List<SaleViewModel> data) => OK<ReportOperationResponse, List<SaleViewModel>>(data);
|
||||
|
||||
public static ReportOperationResponse OK(List<WorkerSalaryByPeriodViewModel> data) => OK<ReportOperationResponse, List<WorkerSalaryByPeriodViewModel>>(data);
|
||||
|
||||
public static ReportOperationResponse OK(List<SupplyInformationViewModel> data) => OK<ReportOperationResponse, List<SupplyInformationViewModel>>(data);
|
||||
|
||||
public static ReportOperationResponse OK(List<IngredientMoveViewModel> data) => OK<ReportOperationResponse, List<IngredientMoveViewModel>>(data);
|
||||
|
||||
public static ReportOperationResponse OK(List<StorageIngredientViewModel> data) => OK<ReportOperationResponse, List<StorageIngredientViewModel>>(data);
|
||||
|
||||
public static ReportOperationResponse BadRequest(string message) => BadRequest<ReportOperationResponse>(message);
|
||||
|
||||
public static ReportOperationResponse InternalServerError(string message) => InternalServerError<ReportOperationResponse>(message);
|
||||
}
|
||||
@@ -1,18 +1,17 @@
|
||||
using CandyHouseContracts.Infrastructure;
|
||||
using CandyHouseContracts.Infrastructure;
|
||||
using CandyHouseContracts.ViewModels;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace CandyHouseContracts.AdapterContracts.OperationResponses;
|
||||
|
||||
public class SalaryOperationResponse : OperationResponse
|
||||
{
|
||||
public static SalaryOperationResponse OK(List<SalaryViewModel> data) => OK<SalaryOperationResponse, List<SalaryViewModel>>(data);
|
||||
|
||||
public static SalaryOperationResponse NoContent() => NoContent<SalaryOperationResponse>();
|
||||
|
||||
public static SalaryOperationResponse NotFound(string message) => NotFound<SalaryOperationResponse>(message);
|
||||
|
||||
public static SalaryOperationResponse BadRequest(string message) => BadRequest<SalaryOperationResponse>(message);
|
||||
|
||||
public static SalaryOperationResponse InternalServerError(string message) => InternalServerError<SalaryOperationResponse>(message);
|
||||
}
|
||||
}
|
||||
@@ -1,24 +1,25 @@
|
||||
using CandyHouseContracts.Infrastructure;
|
||||
using CandyHouseContracts.Infrastructure;
|
||||
using CandyHouseContracts.ViewModels;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace CandyHouseContracts.AdapterContracts.OperationResponses;
|
||||
|
||||
public class SaleOperationResponse : OperationResponse
|
||||
{
|
||||
public static SaleOperationResponse OK(List<SaleViewModel> data) => OK<SaleOperationResponse, List<SaleViewModel>>(data);
|
||||
public static SaleOperationResponse OK(List<SaleViewModel> data) =>
|
||||
OK<SaleOperationResponse, List<SaleViewModel>>(data);
|
||||
|
||||
public static SaleOperationResponse OK(SaleViewModel data) => OK<SaleOperationResponse, SaleViewModel>(data);
|
||||
public static SaleOperationResponse OK(SaleViewModel data) =>
|
||||
OK<SaleOperationResponse, SaleViewModel>(data);
|
||||
|
||||
public static SaleOperationResponse NoContent() => NoContent<SaleOperationResponse>();
|
||||
public static SaleOperationResponse NoContent() =>
|
||||
NoContent<SaleOperationResponse>();
|
||||
|
||||
public static SaleOperationResponse NotFound(string message) => NotFound<SaleOperationResponse>(message);
|
||||
public static SaleOperationResponse NotFound(string message) =>
|
||||
NotFound<SaleOperationResponse>(message);
|
||||
|
||||
public static SaleOperationResponse BadRequest(string message) => BadRequest<SaleOperationResponse>(message);
|
||||
public static SaleOperationResponse BadRequest(string message) =>
|
||||
BadRequest<SaleOperationResponse>(message);
|
||||
|
||||
public static SaleOperationResponse InternalServerError(string message) => InternalServerError<SaleOperationResponse>(message);
|
||||
}
|
||||
public static SaleOperationResponse InternalServerError(string message) =>
|
||||
InternalServerError<SaleOperationResponse>(message);
|
||||
}
|
||||
@@ -1,26 +1,14 @@
|
||||
using CandyHouseContracts.DataModels;
|
||||
using CandyHouseContracts.Infrastructure;
|
||||
using CandyHouseContracts.Infrastructure;
|
||||
using CandyHouseContracts.ViewModels;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace CandyHouseContracts.AdapterContracts.OperationResponses;
|
||||
|
||||
public class StorageOperationResponse : OperationResponse
|
||||
{
|
||||
public static StorageOperationResponse OK(List<StorageViewModel> data) => OK<StorageOperationResponse, List<StorageViewModel>>(data);
|
||||
|
||||
public static StorageOperationResponse OK(StorageViewModel data) => OK<StorageOperationResponse, StorageViewModel>(data);
|
||||
|
||||
public static StorageOperationResponse NoContent() => NoContent<StorageOperationResponse>();
|
||||
|
||||
public static StorageOperationResponse NotFound(string message) => NotFound<StorageOperationResponse>(message);
|
||||
|
||||
public static StorageOperationResponse BadRequest(string message) => BadRequest<StorageOperationResponse>(message);
|
||||
|
||||
public static StorageOperationResponse InternalServerError(string message) => InternalServerError<StorageOperationResponse>(message);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1,24 +0,0 @@
|
||||
using CandyHouseContracts.Infrastructure;
|
||||
using CandyHouseContracts.ViewModels;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace CandyHouseContracts.AdapterContracts.OperationResponses;
|
||||
|
||||
public class SuppliesOperationResponse : OperationResponse
|
||||
{
|
||||
public static SuppliesOperationResponse OK(List<SuppliesViewModel> data) => OK<SuppliesOperationResponse, List<SuppliesViewModel>>(data);
|
||||
|
||||
public static SuppliesOperationResponse OK(SuppliesViewModel data) => OK<SuppliesOperationResponse, SuppliesViewModel>(data);
|
||||
|
||||
public static SuppliesOperationResponse NoContent() => NoContent<SuppliesOperationResponse>();
|
||||
|
||||
public static SuppliesOperationResponse NotFound(string message) => NotFound<SuppliesOperationResponse>(message);
|
||||
|
||||
public static SuppliesOperationResponse BadRequest(string message) => BadRequest<SuppliesOperationResponse>(message);
|
||||
|
||||
public static SuppliesOperationResponse InternalServerError(string message) => InternalServerError<SuppliesOperationResponse>(message);
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
using CandyHouseContracts.Infrastructure;
|
||||
using CandyHouseContracts.ViewModels;
|
||||
|
||||
namespace CandyHouseContracts.AdapterContracts.OperationResponses;
|
||||
|
||||
public class SupplyOperationResponse : OperationResponse
|
||||
{
|
||||
public static SupplyOperationResponse OK(List<SupplyViewModel> data) => OK<SupplyOperationResponse, List<SupplyViewModel>>(data);
|
||||
public static SupplyOperationResponse OK(SupplyViewModel data) => OK<SupplyOperationResponse, SupplyViewModel>(data);
|
||||
public static SupplyOperationResponse NoContent() => NoContent<SupplyOperationResponse>();
|
||||
public static SupplyOperationResponse NotFound(string message) => NotFound<SupplyOperationResponse>(message);
|
||||
public static SupplyOperationResponse BadRequest(string message) => BadRequest<SupplyOperationResponse>(message);
|
||||
public static SupplyOperationResponse InternalServerError(string message) => InternalServerError<SupplyOperationResponse>(message);
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
using CandyHouseContracts.Infrastructure;
|
||||
using CandyHouseContracts.ViewModels;
|
||||
|
||||
namespace CandyHouseContracts.AdapterContracts.OperationResponses;
|
||||
|
||||
public class WorkerOperationResponse : OperationResponse
|
||||
{
|
||||
public static WorkerOperationResponse OK(List<WorkerViewModel> data) => OK<WorkerOperationResponse, List<WorkerViewModel>>(data);
|
||||
|
||||
public static WorkerOperationResponse OK(WorkerViewModel data) => OK<WorkerOperationResponse, WorkerViewModel>(data);
|
||||
|
||||
public static WorkerOperationResponse NoContent() => NoContent<WorkerOperationResponse>();
|
||||
|
||||
public static WorkerOperationResponse NotFound(string message) => NotFound<WorkerOperationResponse>(message);
|
||||
|
||||
public static WorkerOperationResponse BadRequest(string message) => BadRequest<WorkerOperationResponse>(message);
|
||||
|
||||
public static WorkerOperationResponse InternalServerError(string message) => InternalServerError<WorkerOperationResponse>(message);
|
||||
}
|
||||
@@ -1,18 +0,0 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace CandyHouseContracts.BindingModels;
|
||||
|
||||
public class ClientBindingModel
|
||||
{
|
||||
public string? Id { get; set; }
|
||||
|
||||
public string? FIO { get; set; }
|
||||
|
||||
public string? PhoneNumber { get; set; }
|
||||
|
||||
public double DiscountSize { get; set; }
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
namespace CandyHouseContracts.BindingModels;
|
||||
|
||||
public class CustomerBindingModel
|
||||
{
|
||||
public string? Id { get; set; }
|
||||
public string? FIO { get; set; }
|
||||
public string? Phone { get; set; }
|
||||
public string? Email { get; set; }
|
||||
public double DiscountSize { get; set; }
|
||||
}
|
||||
@@ -1,22 +0,0 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace CandyHouseContracts.BindingModels;
|
||||
|
||||
public class EmployeeBindingModel
|
||||
{
|
||||
public string? Id { get; set; }
|
||||
|
||||
public string? FIO { get; set; }
|
||||
|
||||
public string? Email { get; set; }
|
||||
|
||||
public string? PostId { get; set; }
|
||||
|
||||
public DateTime BirthDate { get; set; }
|
||||
|
||||
public DateTime EmploymentDate { get; set; }
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
using CandyHouseContracts.Enums;
|
||||
|
||||
namespace CandyHouseContracts.BindingModels;
|
||||
|
||||
public class IngredientBindingModel
|
||||
{
|
||||
public string? Id { get; set; }
|
||||
|
||||
public string? IngredientName { get; set; }
|
||||
|
||||
public string? IngredientType { get; set; }
|
||||
|
||||
public string? ManufacturerId { get; set; }
|
||||
|
||||
public double Price { get; set; }
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
namespace CandyHouseContracts.BindingModels;
|
||||
|
||||
public class ManufacturerBindingModel
|
||||
{
|
||||
public string? Id { get; set; }
|
||||
|
||||
public string? ManufacturerName { get; set; }
|
||||
}
|
||||
@@ -1,8 +1,4 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using CandyHouseContracts.Enums;
|
||||
|
||||
namespace CandyHouseContracts.BindingModels;
|
||||
|
||||
@@ -16,5 +12,5 @@ public class PostBindingModel
|
||||
|
||||
public string? PostType { get; set; }
|
||||
|
||||
public double Salary { get; set; }
|
||||
}
|
||||
public string? ConfigurationJson { get; set; }
|
||||
}
|
||||
@@ -1,16 +1,17 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using CandyHouseContracts.Enums;
|
||||
|
||||
namespace CandyHouseContracts.BindingModels;
|
||||
|
||||
public class ProductBindingModel
|
||||
{
|
||||
public string? Id { get; set; }
|
||||
|
||||
public string? ProductName { get; set; }
|
||||
public string? ProductDescription { get; set; }
|
||||
public double Price { get; set; }
|
||||
public string? ProductType { get; set; }
|
||||
|
||||
public int? Count { get; set; }
|
||||
|
||||
public double? TotalPrice { get; set; }
|
||||
|
||||
public List<ProductIngredientBindingModel>? Ingredients { get; set; }
|
||||
}
|
||||
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
namespace CandyHouseContracts.BindingModels;
|
||||
|
||||
public class ProductIngredientBindingModel
|
||||
{
|
||||
public string? ProductId { get; set; }
|
||||
public string? IngredientId { get; set; }
|
||||
public int Count { get; set; }
|
||||
}
|
||||
@@ -1,14 +0,0 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace CandyHouseContracts.BindingModels;
|
||||
|
||||
public class ProductStorageBindingModel
|
||||
{
|
||||
public string? StorageId { get; set; }
|
||||
public string? ProductId { get; set; }
|
||||
public int Count { get; set; }
|
||||
}
|
||||
@@ -1,14 +0,0 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace CandyHouseContracts.BindingModels;
|
||||
|
||||
public class ProductSuppliesBindingModel
|
||||
{
|
||||
public string? SuppliesId { get; set; }
|
||||
public string? ProductId { get; set; }
|
||||
public int Count { get; set; }
|
||||
}
|
||||
@@ -1,8 +1,5 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using CandyHouseContracts.Enums;
|
||||
using CandyHouseContracts.ViewModels;
|
||||
|
||||
namespace CandyHouseContracts.BindingModels;
|
||||
|
||||
@@ -10,11 +7,11 @@ public class SaleBindingModel
|
||||
{
|
||||
public string? Id { get; set; }
|
||||
|
||||
public string? EmployeeId { get; set; }
|
||||
public string? WorkerId { get; set; }
|
||||
|
||||
public string? ClientId { get; set; }
|
||||
public string? CustomerId { get; set; }
|
||||
|
||||
public int DiscountType { get; set; }
|
||||
|
||||
public List<SaleProductBindingModel>? Products { get; set; }
|
||||
}
|
||||
public ProductBindingModel? Product { get; set; }
|
||||
}
|
||||
@@ -1,18 +0,0 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace CandyHouseContracts.BindingModels;
|
||||
|
||||
public class SaleProductBindingModel
|
||||
{
|
||||
public string? SaleId { get; set; }
|
||||
|
||||
public string? ProductId { get; set; }
|
||||
|
||||
public int Count { get; set; }
|
||||
|
||||
public double Price { get; set; }
|
||||
}
|
||||
@@ -1,16 +1,9 @@
|
||||
using CandyHouseContracts.Enums;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace CandyHouseContracts.BindingModels;
|
||||
namespace CandyHouseContracts.BindingModels;
|
||||
|
||||
public class StorageBindingModel
|
||||
{
|
||||
public string? Id { get; set; }
|
||||
public ProductType? ProductType { get; set; }
|
||||
public required string Address { get; set; }
|
||||
public int Count { get; set; }
|
||||
public List<ProductStorageBindingModel>? Products { get; set; }
|
||||
}
|
||||
public List<StorageIngredientBindingModel> Ingredients { get; set; } = [];
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
namespace CandyHouseContracts.BindingModels;
|
||||
|
||||
public class StorageIngredientBindingModel
|
||||
{
|
||||
public required string StorageId { get; set; }
|
||||
public required string IngredientId { get; set; }
|
||||
public int Count { get; set; }
|
||||
}
|
||||
@@ -1,17 +0,0 @@
|
||||
using CandyHouseContracts.Enums;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace CandyHouseContracts.BindingModels;
|
||||
|
||||
public class SuppliesBindingModel
|
||||
{
|
||||
public string? Id { get; set; }
|
||||
public ProductType? ProductType { get; set; }
|
||||
public DateTime ProductuionDate { get; set; }
|
||||
public int Count { get; set; }
|
||||
public List<ProductSuppliesBindingModel>? Products { get; set; }
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
namespace CandyHouseContracts.BindingModels;
|
||||
|
||||
public class SupplyBindingModel
|
||||
{
|
||||
public string? Id { get; set; }
|
||||
public required string StorageId { get; set; }
|
||||
public DateTime DeliveryDate { get; set; }
|
||||
public int Count { get; set; }
|
||||
public List<SupplyIngredientBindingModel> Ingredients { get; set; } = [];
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
namespace CandyHouseContracts.BindingModels;
|
||||
|
||||
public class SupplyIngredientBindingModel
|
||||
{
|
||||
public required string SupplyId { get; set; }
|
||||
public required string IngredientId { get; set; }
|
||||
public int Count { get; set; }
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
namespace CandyHouseContracts.BindingModels;
|
||||
|
||||
public class WorkerBindingModel
|
||||
{
|
||||
public string? Id { get; set; }
|
||||
|
||||
public string? FIO { get; set; }
|
||||
|
||||
public string? PostId { get; set; }
|
||||
|
||||
public DateTime? BirthDate { get; set; }
|
||||
|
||||
public DateTime? EmploymentDate { get; set; }
|
||||
}
|
||||
@@ -1,21 +0,0 @@
|
||||
using CandyHouseContracts.DataModels;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace CandyHouseContracts.BuisnessLogicContracts;
|
||||
|
||||
public interface IClientBusinessLogicContract
|
||||
{
|
||||
List<ClientDataModel> GetAllClients();
|
||||
|
||||
ClientDataModel GetClientByData(string data);
|
||||
|
||||
void InsertClient(ClientDataModel clientDataModel);
|
||||
|
||||
void UpdateClient(ClientDataModel clientDataModel);
|
||||
|
||||
void DeleteClient(string id);
|
||||
}
|
||||
@@ -1,27 +0,0 @@
|
||||
using CandyHouseContracts.DataModels;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace CandyHouseContracts.BuisnessLogicContracts;
|
||||
|
||||
public interface IEmployeeBusinessLogicContract
|
||||
{
|
||||
List<EmployeeDataModel> GetAllEmployees(bool onlyActive = true);
|
||||
|
||||
List<EmployeeDataModel> GetAllEmployeesByPost(string employeeId, bool onlyActive = true);
|
||||
|
||||
List<EmployeeDataModel> GetAllEmployeesByBirthDate(DateTime fromDate, DateTime toDate, bool onlyActive = true);
|
||||
|
||||
List<EmployeeDataModel> GetAllEmployeesByEmploymentDate(DateTime fromDate, DateTime toDate, bool onlyActive = true);
|
||||
|
||||
EmployeeDataModel GetEmployeeByData(string data);
|
||||
|
||||
void InsertEmployee(EmployeeDataModel employeeDataModel);
|
||||
|
||||
void UpdateEmployee(EmployeeDataModel employeeDataModel);
|
||||
|
||||
void DeleteEmployee(string id);
|
||||
}
|
||||
@@ -1,23 +0,0 @@
|
||||
using CandyHouseContracts.DataModels;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace CandyHouseContracts.BuisnessLogicContracts;
|
||||
|
||||
public interface IProductBusinessLogicContract
|
||||
{
|
||||
List<ProductDataModel> GetAllProducts();
|
||||
|
||||
List<ProductHistoryDataModel> GetProductHistoryByProduct(string productId);
|
||||
|
||||
ProductDataModel GetProductByData(string data);
|
||||
|
||||
void InsertProduct(ProductDataModel productDataModel);
|
||||
|
||||
void UpdateProduct(ProductDataModel productDataModel);
|
||||
|
||||
void DeleteProduct(string id);
|
||||
}
|
||||
@@ -1,17 +0,0 @@
|
||||
using CandyHouseContracts.DataModels;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace CandyHouseContracts.BuisnessLogicContracts;
|
||||
|
||||
public interface ISalaryBusinessLogicContract
|
||||
{
|
||||
List<SalaryDataModel> GetAllSalariesByPeriod(DateTime fromDate, DateTime toDate);
|
||||
|
||||
List<SalaryDataModel> GetAllSalariesByPeriodByEmployee(DateTime fromDate, DateTime toDate, string employeeId);
|
||||
|
||||
void CalculateSalaryByMounth(DateTime date);
|
||||
}
|
||||
@@ -1,25 +0,0 @@
|
||||
using CandyHouseContracts.DataModels;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace CandyHouseContracts.BuisnessLogicContracts;
|
||||
|
||||
public interface ISaleBusinessLogicContract
|
||||
{
|
||||
List<SaleDataModel> GetAllSalesByPeriod(DateTime fromDate, DateTime toDate);
|
||||
|
||||
List<SaleDataModel> GetAllSalesByEmployeeByPeriod(string employeeId, DateTime fromDate, DateTime toDate);
|
||||
|
||||
List<SaleDataModel> GetAllSalesByClientByPeriod(string clientId, DateTime fromDate, DateTime toDate);
|
||||
|
||||
List<SaleDataModel> GetAllSalesByProductByPeriod(string productId, DateTime fromDate, DateTime toDate);
|
||||
|
||||
SaleDataModel GetSaleByData(string data);
|
||||
|
||||
void InsertSale(SaleDataModel saleDataModel);
|
||||
|
||||
void CancelSale(string id);
|
||||
}
|
||||
@@ -1,17 +0,0 @@
|
||||
using CandyHouseContracts.DataModels;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace CandyHouseContracts.BusinessLogicContracts;
|
||||
|
||||
public interface IStorageBusinessLogicContract
|
||||
{
|
||||
List<StorageDataModel> GetAllComponents();
|
||||
StorageDataModel GetComponentByData(string data);
|
||||
void InsertComponent(StorageDataModel storageDataModel);
|
||||
void UpdateComponent(StorageDataModel storageDataModel);
|
||||
void DeleteComponent(string id);
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
using CandyHouseContracts.DataModels;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace CandyHouseContracts.BusinessLogicContracts;
|
||||
|
||||
public interface ISuppliesBusinessLogicContract
|
||||
{
|
||||
List<SuppliesDataModel> GetAllComponents();
|
||||
SuppliesDataModel GetComponentByData(string data);
|
||||
void InsertComponent(SuppliesDataModel componentDataModel);
|
||||
void UpdateComponent(SuppliesDataModel componentDataModel);
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
using CandyHouseContracts.DataModels;
|
||||
|
||||
namespace CandyHouseContracts.BusinessLogicsContracts;
|
||||
|
||||
internal interface IIngredientBusinessLogicContract
|
||||
{
|
||||
List<IngredientDataModel> GetAllIngredients(bool onlyActive = true);
|
||||
List<IngredientDataModel> GetAllIngredientsByManufacturer(string manufacturerId, bool onlyActive = true);
|
||||
List<IngredientHistoryDataModel> GetIngredientHistory(string ingredientId);
|
||||
IngredientDataModel GetIngredientByData(string data);
|
||||
void InsertIngredient(IngredientDataModel ingredientDataModel);
|
||||
void UpdateIngredient(IngredientDataModel ingredientDataModel);
|
||||
void DeleteIngredient(string id);
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
using CandyHouseContracts.DataModels;
|
||||
|
||||
namespace CandyHouseContracts.BusinessLogicsContracts;
|
||||
|
||||
internal interface ICustomerBusinessLogicContract
|
||||
{
|
||||
List<CustomerDataModel> GetAllCustomers();
|
||||
CustomerDataModel GetCustomerByData(string data);
|
||||
void InsertCustomer(CustomerDataModel customerDataModel);
|
||||
void UpdateCustomer(CustomerDataModel customerDataModel);
|
||||
void DeleteCustomer(string id);
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
using CandyHouseContracts.DataModels;
|
||||
|
||||
namespace CandyHouseContracts.BusinessLogicsContracts;
|
||||
|
||||
internal interface IManufacturerBusinessLogicContract
|
||||
{
|
||||
List<ManufacturerDataModel> GetAllManufacturers();
|
||||
ManufacturerDataModel GetManufacturerByData(string data);
|
||||
void InsertManufacturer(ManufacturerDataModel manufacturerDataModel);
|
||||
void UpdateManufacturer(ManufacturerDataModel manufacturerDataModel);
|
||||
void DeleteManufacturer(string id);
|
||||
}
|
||||
@@ -1,25 +1,15 @@
|
||||
using CandyHouseContracts.DataModels;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace CandyHouseContracts.BuisnessLogicContracts;
|
||||
namespace CandyHouseContracts.BusinessLogicsContracts;
|
||||
|
||||
public interface IPostBusinessLogicContract
|
||||
internal interface IPostBusinessLogicContract
|
||||
{
|
||||
List<PostDataModel> GetAllPosts();
|
||||
|
||||
List<PostDataModel> GetAllDataOfPost(string postId);
|
||||
|
||||
List<PostDataModel> GetPostHistory(string postId);
|
||||
PostDataModel GetPostByData(string data);
|
||||
|
||||
void InsertPost(PostDataModel postDataModel);
|
||||
|
||||
void UpdatePost(PostDataModel postDataModel);
|
||||
|
||||
void DeletePost(string id);
|
||||
|
||||
void RestorePost(string id);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
using CandyHouseContracts.DataModels;
|
||||
|
||||
namespace CandyHouseContracts.BusinessLogicsContracts;
|
||||
|
||||
/// <summary>
|
||||
/// Интерфейс бизнес-логики
|
||||
/// </summary>
|
||||
internal interface IProductBusinessLogicContract
|
||||
{
|
||||
List<ProductDataModel> GetAllProducts(bool onlyActive = true);
|
||||
ProductDataModel GetProductById(string id);
|
||||
void InsertProduct(ProductDataModel saleProductDataModel);
|
||||
void UpdateProduct(ProductDataModel saleProductDataModel);
|
||||
void DeleteProduct(string id);
|
||||
List<ProductIngredientDataModel> GetIngredientsByProductId(string saleProductId);
|
||||
void AddIngredientToProduct(ProductIngredientDataModel ProductIngredient);
|
||||
void RemoveIngredientFromProduct(string ingredientId, string productId);
|
||||
}
|
||||
@@ -0,0 +1,25 @@
|
||||
using CandyHouseContracts.DataModels;
|
||||
|
||||
namespace CandyHouseContracts.BusinessLogicsContracts;
|
||||
|
||||
internal interface IReportContract
|
||||
{
|
||||
Task<List<IngredientWithHistoryDataModel>> GetDataIngredientsWithHistoryAsync(CancellationToken ct); // Переименвоал
|
||||
|
||||
Task<List<SaleDataModel>> GetDataSaleByPeriodAsync(DateTime dateStart, DateTime dateFinish, CancellationToken ct);
|
||||
|
||||
Task<List<WorkerSalaryByPeriodDataModel>> GetDataSalaryByPeriodAsync(DateTime dateStart, DateTime dateFinish, CancellationToken ct);
|
||||
|
||||
Task<Stream> CreateDocumentIngredientsWithHistoryAsync(CancellationToken ct); // Переименовал
|
||||
|
||||
Task<Stream> CreateDocumentSalesByPeriodAsync(DateTime dateStart, DateTime dateFinish, CancellationToken ct);
|
||||
|
||||
Task<Stream> CreateDocumentSalaryByPeriodAsync(DateTime dateStart, DateTime dateFinish, CancellationToken ct);
|
||||
// таски для харда
|
||||
Task<List<SupplyInformationDataModel>> GetDataSupplyAsync(DateTime dateStart, DateTime dateFinish, CancellationToken ct);
|
||||
Task<List<IngredientMoveDataModel>> GetDataIngredientMovementAsync(DateTime dateStart, DateTime dateFinish, CancellationToken ct);
|
||||
Task<List<StorageIngredientDataModel>> GetDataStorageStockAsync(string storageId, CancellationToken ct);
|
||||
Task<Stream> CreateDocumentSupplyAsync(DateTime dateStart, DateTime dateFinish, CancellationToken ct);
|
||||
Task<Stream> CreateDocumentIngredientMovementAsync(DateTime dateStart, DateTime dateFinish, CancellationToken ct);
|
||||
Task<Stream> CreateDocumentStorageStockAsync(string storageId, CancellationToken ct);
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
using CandyHouseContracts.DataModels;
|
||||
|
||||
namespace CandyHouseContracts.BusinessLogicsContracts;
|
||||
|
||||
internal interface ISalaryBusinessLogicContract
|
||||
{
|
||||
List<SalaryDataModel> GetAllSalariesByPeriod(DateTime fromDate, DateTime toDate);
|
||||
List<SalaryDataModel> GetAllSalariesByPeriodByWorker(DateTime fromDate, DateTime toDate, string workerId);
|
||||
void CalculateSalaryByMonth(DateTime date);
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
using CandyHouseContracts.DataModels;
|
||||
|
||||
namespace CandyHouseContracts.BusinessLogicsContracts;
|
||||
|
||||
internal interface ISaleBusinessLogicContract
|
||||
{
|
||||
List<SaleDataModel> GetAllSalesByPeriod(DateTime fromDate, DateTime toDate);
|
||||
List<SaleDataModel> GetAllSalesByWorkerByPeriod(string workerId, DateTime fromDate, DateTime toDate);
|
||||
List<SaleDataModel> GetAllSalesByCustomerByPeriod(string customerId, DateTime fromDate, DateTime toDate);
|
||||
List<SaleDataModel> GetAllSalesByProductByPeriod(string productId, DateTime fromDate, DateTime toDate);
|
||||
SaleDataModel GetSaleByData(string data);
|
||||
void InsertSale(SaleDataModel saleDataModel);
|
||||
void CancelSale(string id);
|
||||
double CalculateSalesRevenue(DateTime fromDate, DateTime toDate);
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
using CandyHouseContracts.DataModels;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace CandyHouseContracts.BusinessLogicsContracts
|
||||
{
|
||||
internal interface IStorageBusinessLogicContract
|
||||
{
|
||||
List<StorageDataModel> GetAllStorages();
|
||||
void CreateStorage(string id, string address, int count, List<StorageIngredientDataModel> ingredients);
|
||||
void UpdateStorage(StorageDataModel storage);
|
||||
void AddIngredientToStorage(string storageId, StorageIngredientDataModel ingredient);
|
||||
void UpdateIngredientCount(string storageId, string ingredientId, int newCount);
|
||||
int GetIngredientCountFromStorage(string storageId, string ingredientId);
|
||||
List<StorageIngredientDataModel> GetIngredientsFromStorage(string storageId);
|
||||
StorageDataModel GetStorageById(string storageId);
|
||||
Dictionary<string, int> CalculateRemainingIngredients(string storageId);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
using CandyHouseContracts.DataModels;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace CandyHouseContracts.BusinessLogicsContracts
|
||||
{
|
||||
internal interface ISupplyBusinessLogicContract
|
||||
{
|
||||
List<SupplyDataModel> GetAllSupplies();
|
||||
void CreateSupply(SupplyDataModel supply);
|
||||
SupplyDataModel GetSupplyById(string supplyId);
|
||||
List<SupplyDataModel> GetSuppliesByStorageId(string storageId);
|
||||
void AddOrUpdateIngredientInSupply(SupplyIngredientDataModel ingredient);
|
||||
void UpdateIngredientCountInSupply(string supplyId, string ingredientId, int newCount);
|
||||
void RemoveIngredientFromSupply(string supplyId, string ingredientId);
|
||||
int CalculateSuppliedIngredientsCount(DateTime fromDate, DateTime toDate);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,15 @@
|
||||
using CandyHouseContracts.DataModels;
|
||||
|
||||
namespace CandyHouseContracts.BusinessLogicsContracts;
|
||||
|
||||
internal interface IWorkerBusinessLogicContract
|
||||
{
|
||||
List<WorkerDataModel> GetAllWorkers(bool onlyActive = true);
|
||||
List<WorkerDataModel> GetAllWorkersByPost(string postId, bool onlyActive = true);
|
||||
List<WorkerDataModel> GetAllWorkersByBirthDate(DateTime fromDate, DateTime toDate, bool onlyActive = true);
|
||||
List<WorkerDataModel> GetAllWorkersByEmploymentDate(DateTime fromDate, DateTime toDate, bool onlyActive = true);
|
||||
WorkerDataModel GetWorkerByData(string data);
|
||||
void InsertWorker(WorkerDataModel workerDataModel);
|
||||
void UpdateWorker(WorkerDataModel workerDataModel);
|
||||
void DeleteWorker(string id);
|
||||
}
|
||||
@@ -1,15 +1,40 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>net9.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.AspNetCore.Http.Abstractions" Version="2.3.0" />
|
||||
<PackageReference Include="Microsoft.AspNetCore.Mvc.Abstractions" Version="2.3.0" />
|
||||
<PackageReference Include="Microsoft.AspNetCore.Mvc.Core" Version="2.3.0" />
|
||||
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="9.0.4" />
|
||||
<PackageReference Include="Microsoft.Extensions.Localization.Abstractions" Version="9.0.4" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Compile Update="Resources\Messages.Designer.cs">
|
||||
<DesignTime>True</DesignTime>
|
||||
<AutoGen>True</AutoGen>
|
||||
<DependentUpon>Messages.resx</DependentUpon>
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<EmbeddedResource Update="Resources\Messages.resx">
|
||||
<Generator>ResXFileCodeGenerator</Generator>
|
||||
<LastGenOutput>Messages.Designer.cs</LastGenOutput>
|
||||
</EmbeddedResource>
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<InternalsVisibleTo Include="CandyHouseBusinessLogic" />
|
||||
<InternalsVisibleTo Include="CandyHouseDatabase" />
|
||||
<InternalsVisibleTo Include="CandyHouseWebApi" />
|
||||
<InternalsVisibleTo Include="CandyHouseTests" />
|
||||
<InternalsVisibleTo Include="DynamicProxyGenAssembly2" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
||||
@@ -1,42 +0,0 @@
|
||||
using CandyHouseContracts.Extensions;
|
||||
using CandyHouseContracts.Exceptions;
|
||||
using CandyHouseContracts.Infrastructure;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Text.RegularExpressions;
|
||||
using System.Threading.Tasks;
|
||||
using ValidationException = CandyHouseContracts.Exceptions.ValidationException;
|
||||
|
||||
namespace CandyHouseContracts.DataModels;
|
||||
|
||||
public class ClientDataModel(string id, string fIO, string phoneNumber, double discountSize) : IValidation
|
||||
{
|
||||
public string Id { get; private set; } = id;
|
||||
|
||||
public string FIO { get; private set; } = fIO;
|
||||
|
||||
public string PhoneNumber { get; private set; } = phoneNumber;
|
||||
|
||||
public double DiscountSize { get; private set; } = discountSize;
|
||||
|
||||
public void Validate()
|
||||
{
|
||||
if (Id.IsEmpty())
|
||||
throw new ValidationException("Field Id is empty");
|
||||
|
||||
if (!Id.IsGuid())
|
||||
throw new ValidationException("The value in the field Id is not a unique identifier");
|
||||
|
||||
if (FIO.IsEmpty())
|
||||
throw new ValidationException("Field FIO is empty");
|
||||
|
||||
if (PhoneNumber.IsEmpty())
|
||||
throw new ValidationException("Field PhoneNumber is empty");
|
||||
|
||||
if (!Regex.IsMatch(PhoneNumber, @"^((8|\+7)[\- ]?)?(\(?\d{3}\)?[\- ]?)?[\d\- ]{7,10}$"))
|
||||
throw new ValidationException("Field PhoneNumber is not a phone number");
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,40 @@
|
||||
using CandyHouseContracts.Extensions;
|
||||
using CandyHouseContracts.Infrastructure;
|
||||
using System.Text.RegularExpressions;
|
||||
using CandyHouseContracts.Exceptions;
|
||||
using CandyHouseContracts.Resources;
|
||||
using Microsoft.Extensions.Localization;
|
||||
|
||||
namespace CandyHouseContracts.DataModels;
|
||||
|
||||
internal class CustomerDataModel(string id, string fio, string phone, string email, double discountSize) : IValidation
|
||||
{
|
||||
public string Id { get; private set; } = id;
|
||||
public string FIO { get; private set; } = fio;
|
||||
public string Phone { get; private set; } = phone;
|
||||
public string Email { get; private set; } = email;
|
||||
public double DiscountSize { get; private set; } = discountSize;
|
||||
|
||||
public void Validate(IStringLocalizer<Messages> localizer)
|
||||
{
|
||||
if (Id.IsEmpty())
|
||||
throw new ValidationException(string.Format(localizer["ValidationExceptionMessageEmptyField"], "Id"));
|
||||
|
||||
if (!Id.IsGuid())
|
||||
throw new ValidationException(string.Format(localizer["ValidationExceptionMessageNotAId"], "Id"));
|
||||
|
||||
if (FIO.IsEmpty())
|
||||
throw new ValidationException(string.Format(localizer["ValidationExceptionMessageEmptyField"], "FIO"));
|
||||
|
||||
if (Phone.IsEmpty()) throw new ValidationException(string.Format(localizer["ValidationExceptionMessageEmptyField"], "Phone"));
|
||||
|
||||
var phoneRegex = new Regex(@"^\+7\d{10}$");
|
||||
|
||||
if (!phoneRegex.IsMatch(Phone)) throw new ValidationException(localizer["ValidationExceptionMessageIncorrectPhone"]);
|
||||
|
||||
if (Email.IsEmpty()) throw new ValidationException(string.Format(localizer["ValidationExceptionMessageEmptyField"], "Email"));
|
||||
|
||||
if (!Email.Contains("@")) throw new ValidationException(localizer["ValidationExceptionMessageIncorrectEmail"]);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,75 +0,0 @@
|
||||
using CandyHouseContracts.Exceptions;
|
||||
using CandyHouseContracts.Extensions;
|
||||
using CandyHouseContracts.Infrastructure;
|
||||
using Microsoft.Extensions.Hosting;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Text.RegularExpressions;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace CandyHouseContracts.DataModels;
|
||||
|
||||
public class EmployeeDataModel(string id, string fio, string email, string postId, DateTime birthDate, DateTime employmentDate, bool isDeleted) : IValidation
|
||||
{
|
||||
private readonly PostDataModel? _post;
|
||||
|
||||
public string Id { get; private set; } = id;
|
||||
|
||||
public string FIO { get; private set; } = fio;
|
||||
|
||||
public string Email { get; private set; } = email;
|
||||
|
||||
public string PostId { get; private set; } = postId;
|
||||
|
||||
public DateTime BirthDate { get; private set; } = birthDate;
|
||||
|
||||
public DateTime EmploymentDate { get; private set; } = employmentDate;
|
||||
|
||||
public bool IsDeleted { get; private set; } = isDeleted;
|
||||
|
||||
public string PostName => _post?.PostName ?? string.Empty;
|
||||
|
||||
public EmployeeDataModel(string id, string fio, string email, string postId, DateTime birthDate, DateTime employmentDate,
|
||||
bool isDeleted, PostDataModel post) : this(id, fio, email, postId, birthDate, employmentDate, isDeleted)
|
||||
{
|
||||
_post = post;
|
||||
}
|
||||
|
||||
public EmployeeDataModel(string id, string fio, string email, string postId, DateTime birthDate,
|
||||
DateTime employmentDate) : this(id, fio, email, postId, birthDate, employmentDate, false) { }
|
||||
|
||||
public void Validate()
|
||||
{
|
||||
if (Id.IsEmpty())
|
||||
throw new ValidationException("Field Id is empty");
|
||||
|
||||
if (!Id.IsGuid())
|
||||
throw new ValidationException("The value in the field Id is not a unique identifier");
|
||||
|
||||
if (FIO.IsEmpty())
|
||||
throw new ValidationException("Field FIO is empty");
|
||||
|
||||
if (Email.IsEmpty())
|
||||
throw new ValidationException("Field Email is empty");
|
||||
|
||||
if (!Regex.IsMatch(Email, @"^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$"))
|
||||
throw new ValidationException("Field Email is not a valid email address");
|
||||
|
||||
if (PostId.IsEmpty())
|
||||
throw new ValidationException("Field PostId is empty");
|
||||
|
||||
if (!PostId.IsGuid())
|
||||
throw new ValidationException("The value in the field PostId is not a unique identifier");
|
||||
|
||||
if (BirthDate.Date > DateTime.Now.AddYears(-18).Date)
|
||||
throw new ValidationException($"Only adults can be hired (BirthDate = {BirthDate.ToShortDateString()})");
|
||||
|
||||
if (EmploymentDate.Date < BirthDate.Date)
|
||||
throw new ValidationException("The date of employment cannot be less than the date of birth");
|
||||
|
||||
if ((EmploymentDate - BirthDate).TotalDays / 365 < 18)
|
||||
throw new ValidationException($"Only adults can be hired (EmploymentDate - {EmploymentDate.ToShortDateString()}, BirthDate - {BirthDate.ToShortDateString()})");
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,57 @@
|
||||
using Microsoft.Extensions.Localization;
|
||||
using CandyHouseContracts.Enums;
|
||||
using CandyHouseContracts.Exceptions;
|
||||
using CandyHouseContracts.Extensions;
|
||||
using CandyHouseContracts.Infrastructure;
|
||||
using CandyHouseContracts.Resources;
|
||||
|
||||
namespace CandyHouseContracts.DataModels;
|
||||
|
||||
internal class IngredientDataModel(string id, string ingredientName, IngredientType ingredientType, string manufacturerId, double price, bool isDeleted) : IValidation
|
||||
{
|
||||
public string Id { get; private set; } = id;
|
||||
|
||||
public string IngredientName { get; private set; } = ingredientName;
|
||||
|
||||
public IngredientType IngredientType { get; private set; } = ingredientType;
|
||||
|
||||
public string ManufacturerId { get; private set; } = manufacturerId;
|
||||
|
||||
public double Price { get; private set; } = price;
|
||||
|
||||
public bool IsDeleted { get; private set; } = isDeleted;
|
||||
|
||||
private readonly ManufacturerDataModel? _manufacturer;
|
||||
|
||||
public string ManufacturerName => _manufacturer?.ManufacturerName ?? string.Empty;
|
||||
|
||||
public IngredientDataModel(string id, string ingredientName, IngredientType ingredientType, string manufacturerId, double price, bool isDeleted, ManufacturerDataModel manufacturer) : this(id, ingredientName, ingredientType, manufacturerId, price, isDeleted)
|
||||
{
|
||||
_manufacturer = manufacturer;
|
||||
}
|
||||
public IngredientDataModel(string id, string ingredientName, IngredientType ingredientType, string manufacturerId, double price) : this(id, ingredientName, ingredientType, manufacturerId, price, false) { }
|
||||
|
||||
public void Validate(IStringLocalizer<Messages> localizer)
|
||||
{
|
||||
if (Id.IsEmpty())
|
||||
throw new ValidationException(string.Format(localizer["ValidationExceptionMessageEmptyField"], "Id"));
|
||||
|
||||
if (!Id.IsGuid())
|
||||
throw new ValidationException(string.Format(localizer["ValidationExceptionMessageNotAId"], "Id"));
|
||||
|
||||
if (IngredientName.IsEmpty())
|
||||
throw new ValidationException(string.Format(localizer["ValidationExceptionMessageEmptyField"], "IngredientName"));
|
||||
|
||||
if (IngredientType == IngredientType.None)
|
||||
throw new ValidationException(string.Format(localizer["ValidationExceptionMessageEmptyField"], "IngredientType"));
|
||||
|
||||
if (ManufacturerId.IsEmpty())
|
||||
throw new ValidationException(string.Format(localizer["ValidationExceptionMessageEmptyField"], "ManufacturerId"));
|
||||
|
||||
if (!ManufacturerId.IsGuid())
|
||||
throw new ValidationException(string.Format(localizer["ValidationExceptionMessageNotAId"], "ManufacturerId"));
|
||||
|
||||
if (Price <= 0)
|
||||
throw new ValidationException(string.Format(localizer["ValidationExceptionMessageLessOrEqualZero"], "Price"));
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,38 @@
|
||||
using Microsoft.Extensions.Localization;
|
||||
using CandyHouseContracts.Exceptions;
|
||||
using CandyHouseContracts.Extensions;
|
||||
using CandyHouseContracts.Infrastructure;
|
||||
using CandyHouseContracts.Resources;
|
||||
|
||||
namespace CandyHouseContracts.DataModels;
|
||||
|
||||
internal class IngredientHistoryDataModel(string ingredientId, double oldPrice) : IValidation
|
||||
{
|
||||
private readonly IngredientDataModel? _ingredient;
|
||||
|
||||
public string IngredientId { get; private set; } = ingredientId;
|
||||
|
||||
public double OldPrice { get; private set; } = oldPrice; // олд спайс
|
||||
|
||||
public DateTime ChangeDate { get; private set; } = DateTime.UtcNow; // дата изменения цены
|
||||
|
||||
public string IngredientName => _ingredient?.IngredientName ?? string.Empty;
|
||||
|
||||
public IngredientHistoryDataModel(string ingredientId, double oldPrice, DateTime changeDate, IngredientDataModel ingredient) : this(ingredientId, oldPrice)
|
||||
{
|
||||
ChangeDate = changeDate;
|
||||
_ingredient = ingredient;
|
||||
}
|
||||
|
||||
public void Validate(IStringLocalizer<Messages> localizer)
|
||||
{
|
||||
if (IngredientId.IsEmpty())
|
||||
throw new ValidationException(string.Format(localizer["ValidationExceptionMessageEmptyField"], "IngredientId"));
|
||||
|
||||
if (!IngredientId.IsGuid())
|
||||
throw new ValidationException(string.Format(localizer["ValidationExceptionMessageNotAId"], "IngredientId"));
|
||||
|
||||
if (OldPrice <= 0)
|
||||
throw new ValidationException(string.Format(localizer["ValidationExceptionMessageLessOrEqualZero"], "OldPrice"));
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
namespace CandyHouseContracts.DataModels;
|
||||
|
||||
public class IngredientMoveDataModel
|
||||
{
|
||||
public DateTime Date { get; set; }
|
||||
public required string OperationType { get; set; } // "Приход" или "Уход"
|
||||
public required string IngredientId { get; set; }
|
||||
public required string IngredientName { get; set; }
|
||||
public int Count { get; set; }
|
||||
public string? StorageId { get; set; }
|
||||
}
|
||||
@@ -0,0 +1,41 @@
|
||||
using Microsoft.Extensions.Localization;
|
||||
using CandyHouseContracts.Infrastructure;
|
||||
using CandyHouseContracts.Resources;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace CandyHouseContracts.DataModels;
|
||||
|
||||
internal class IngredientWithHistoryDataModel : IValidation
|
||||
{
|
||||
public string IngredientName { get; set; }
|
||||
|
||||
public double CurrentPrice { get; set; }
|
||||
|
||||
public string ManufacturerName { get; set; }
|
||||
|
||||
public List<IngredientHistoryDataModel> History { get; set; }
|
||||
|
||||
public IngredientWithHistoryDataModel(string ingredientName, double currentPrice, string manufacturerName, List<IngredientHistoryDataModel> history)
|
||||
{
|
||||
IngredientName = ingredientName;
|
||||
CurrentPrice = currentPrice;
|
||||
ManufacturerName = manufacturerName;
|
||||
History = history;
|
||||
}
|
||||
|
||||
public void Validate(IStringLocalizer<Messages> localizer)
|
||||
{
|
||||
if (string.IsNullOrEmpty(IngredientName))
|
||||
throw new ValidationException(string.Format(localizer["ValidationExceptionMessageEmptyField"], "IngredientName"));
|
||||
|
||||
if (string.IsNullOrEmpty(ManufacturerName))
|
||||
throw new ValidationException(string.Format(localizer["ValidationExceptionMessageEmptyField"], "ManufacturerName"));
|
||||
|
||||
if (CurrentPrice <= 0)
|
||||
throw new ValidationException(string.Format(localizer["ValidationExceptionMessageLessOrEqualZero"], "CurrentPrice"));
|
||||
|
||||
if (History == null)
|
||||
throw new ValidationException("Field History is null");
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,32 @@
|
||||
using Microsoft.Extensions.Localization;
|
||||
using CandyHouseContracts.Exceptions;
|
||||
using CandyHouseContracts.Extensions;
|
||||
using CandyHouseContracts.Infrastructure;
|
||||
using CandyHouseContracts.Resources;
|
||||
|
||||
namespace CandyHouseContracts.DataModels;
|
||||
|
||||
internal class ManufacturerDataModel(string id, string manufacturerName, string? prevManufacturerName, string? prevPrevManufacturerName) : IValidation
|
||||
{
|
||||
public string Id { get; private set; } = id;
|
||||
public string ManufacturerName { get; private set; } = manufacturerName;
|
||||
public string? PrevManufacturerName { get; private set; } =
|
||||
prevManufacturerName;
|
||||
public string? PrevPrevManufacturerName { get; private set; } =
|
||||
prevPrevManufacturerName;
|
||||
|
||||
public ManufacturerDataModel(string id, string manufacturerName) : this(id, manufacturerName, null, null) { }
|
||||
|
||||
public void Validate(IStringLocalizer<Messages> localizer)
|
||||
{
|
||||
if (Id.IsEmpty())
|
||||
throw new ValidationException(string.Format(localizer["ValidationExceptionMessageEmptyField"], "Id"));
|
||||
|
||||
if (!Id.IsGuid())
|
||||
throw new ValidationException(string.Format(localizer["ValidationExceptionMessageNotAId"], "Id"));
|
||||
|
||||
if (ManufacturerName.IsEmpty())
|
||||
throw new ValidationException(string.Format(localizer["ValidationExceptionMessageEmptyField"], "ManufacturerName"));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,33 +1,57 @@
|
||||
using CandyHouseContracts.Enums;
|
||||
using Newtonsoft.Json.Linq;
|
||||
using Newtonsoft.Json;
|
||||
using CandyHouseContracts.Enums;
|
||||
using CandyHouseContracts.Exceptions;
|
||||
using CandyHouseContracts.Extensions;
|
||||
using CandyHouseContracts.Infrastructure;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using CandyHouseContracts.Infrastructure.PostConfigurations;
|
||||
using Microsoft.Extensions.Localization;
|
||||
using CandyHouseContracts.Resources;
|
||||
|
||||
namespace CandyHouseContracts.DataModels;
|
||||
|
||||
public class PostDataModel(string postId, string postName, PostType postType, double salary) : IValidation
|
||||
internal class PostDataModel(string postid, string postName, PostType postType, PostConfiguration configuration) : IValidation
|
||||
{
|
||||
public string Id { get; private set; } = postId;
|
||||
public string PostName { get; private set; } = postName;
|
||||
public PostType PostType { get; private set; } = postType;
|
||||
public double Salary { get; private set; } = salary;
|
||||
public string Id { get; private set; } = postid;
|
||||
|
||||
public void Validate()
|
||||
public string PostName { get; private set; } = postName;
|
||||
|
||||
public PostType PostType { get; private set; } = postType;
|
||||
|
||||
public PostConfiguration ConfigurationModel { get; private set; } = configuration;
|
||||
|
||||
public PostDataModel(string postId, string postName, PostType postType, string configurationJson) : this(postId, postName, postType, (PostConfiguration)null)
|
||||
{
|
||||
var obj = JToken.Parse(configurationJson);
|
||||
if (obj is not null)
|
||||
{
|
||||
ConfigurationModel = obj.Value<string>("Type") switch
|
||||
{
|
||||
nameof(CashierPostConfiguration) => JsonConvert.DeserializeObject<CashierPostConfiguration>(configurationJson)!,
|
||||
nameof(SupervisorPostConfiguration) => JsonConvert.DeserializeObject<SupervisorPostConfiguration>(configurationJson)!,
|
||||
_ => JsonConvert.DeserializeObject<PostConfiguration>(configurationJson)!,
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
public void Validate(IStringLocalizer<Messages> localizer)
|
||||
{
|
||||
if (Id.IsEmpty())
|
||||
throw new ValidationException("Field Id is empty");
|
||||
throw new ValidationException(string.Format(localizer["ValidationExceptionMessageEmptyField"], "Id"));
|
||||
|
||||
if (!Id.IsGuid())
|
||||
throw new ValidationException("The value in the field Id is not a unique identifier");
|
||||
throw new ValidationException(string.Format(localizer["ValidationExceptionMessageNotAId"], "Id"));
|
||||
|
||||
if (PostName.IsEmpty())
|
||||
throw new ValidationException("Field PostName is empty");
|
||||
throw new ValidationException(string.Format(localizer["ValidationExceptionMessageEmptyField"], "PostName"));
|
||||
|
||||
if (PostType == PostType.None)
|
||||
throw new ValidationException("Field PostType is empty");
|
||||
if (Salary <= 0)
|
||||
throw new ValidationException("Field Salary is empty");
|
||||
throw new ValidationException(string.Format(localizer["ValidationExceptionMessageEmptyField"], "PostType"));
|
||||
|
||||
if (ConfigurationModel is null)
|
||||
throw new ValidationException(string.Format(localizer["ValidationExceptionMessageNotInitialized"], "ConfigurationModel"));
|
||||
|
||||
if (ConfigurationModel!.Rate <= 0)
|
||||
throw new ValidationException(string.Format(localizer["ValidationExceptionMessageLessOrEqualZero"], "Rate"));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,32 @@
|
||||
using Microsoft.Extensions.Localization;
|
||||
using CandyHouseContracts.Exceptions;
|
||||
using CandyHouseContracts.Extensions;
|
||||
using CandyHouseContracts.Infrastructure;
|
||||
using CandyHouseContracts.Resources;
|
||||
|
||||
namespace CandyHouseContracts.DataModels;
|
||||
|
||||
internal class ProductIngredientDataModel(string ingredientId, string productId, int count) : IValidation
|
||||
{
|
||||
public string IngredientId { get; private set; } = ingredientId;
|
||||
public string ProductId { get; private set; } = productId;
|
||||
public int Count { get; private set; } = count; //Например для плашек оперативки
|
||||
public void Validate(IStringLocalizer<Messages> localizer)
|
||||
{
|
||||
Console.WriteLine($"Validating ProductIngredientDataModel: ProductId={ProductId}, IngredientId={IngredientId}, Count={Count}");
|
||||
if (IngredientId.IsEmpty())
|
||||
throw new ValidationException(string.Format(localizer["ValidationExceptionMessageEmptyField"], "IngredientId"));
|
||||
|
||||
if (!IngredientId.IsGuid())
|
||||
throw new ValidationException(string.Format(localizer["ValidationExceptionMessageNotAId"], "IngredientId"));
|
||||
|
||||
if (ProductId.IsEmpty())
|
||||
throw new ValidationException(string.Format(localizer["ValidationExceptionMessageEmptyField"], "ProductId"));
|
||||
|
||||
if (!ProductId.IsGuid())
|
||||
throw new ValidationException(string.Format(localizer["ValidationExceptionMessageNotAId"], "ProductId"));
|
||||
|
||||
if (Count <= 0)
|
||||
throw new ValidationException(string.Format(localizer["ValidationExceptionMessageLessOrEqualZero"], "Count"));
|
||||
}
|
||||
}
|
||||
@@ -1,38 +1,42 @@
|
||||
using CandyHouseContracts.Enums;
|
||||
using Microsoft.Extensions.Localization;
|
||||
using CandyHouseContracts.Exceptions;
|
||||
using CandyHouseContracts.Extensions;
|
||||
using CandyHouseContracts.Infrastructure;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Diagnostics;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using System.Xml.Linq;
|
||||
using CandyHouseContracts.Resources;
|
||||
|
||||
namespace CandyHouseContracts.DataModels;
|
||||
|
||||
public class ProductDataModel(string id, string productName, string productDescription, double price, ProductType productType) : IValidation
|
||||
internal class ProductDataModel(string id, string productName, int count, double totalPrice, List<ProductIngredientDataModel> ingredients, bool isDeleted = false) : IValidation
|
||||
{
|
||||
public string Id { get; private set; } = id;
|
||||
public string ProductName { get; private set; } = productName;
|
||||
public string ProductDescription { get; private set; } = productDescription;
|
||||
public double Price { get; private set; } = price;
|
||||
public ProductType ProductType { get; private set; } = productType;
|
||||
|
||||
public void Validate()
|
||||
public string Id { get; private set; } = id; // Id товара, т.к. в этой сущности хранится готовый к продаже ПК
|
||||
public string ProductName { get; private set; } = productName; // Теперь тут название ПК, а не ProductID (ID выше добавил)
|
||||
public int Count { get; private set; } = count;
|
||||
public double TotalPrice { get; private set; } = totalPrice;
|
||||
public List<ProductIngredientDataModel> Ingredients { get; private set; } = ingredients;
|
||||
public bool IsDeleted { get; private set; } = isDeleted;
|
||||
public void Validate(IStringLocalizer<Messages> localizer)
|
||||
{
|
||||
if (Id.IsEmpty())
|
||||
throw new ValidationException("Field Id is empty");
|
||||
throw new ValidationException(string.Format(localizer["ValidationExceptionMessageEmptyField"], "Id"));
|
||||
|
||||
if (!Id.IsGuid())
|
||||
throw new ValidationException("The value in the field Id is not a unique identifier");
|
||||
throw new ValidationException(string.Format(localizer["ValidationExceptionMessageNotAId"], "Id"));
|
||||
|
||||
if (ProductName.IsEmpty())
|
||||
throw new ValidationException("Field ProductName is empty");
|
||||
if (ProductDescription.IsEmpty())
|
||||
throw new ValidationException("Field ProductDescription is empty");
|
||||
if (Price <= 0)
|
||||
throw new ValidationException("Field Price is less than or equal to 0");
|
||||
if (ProductType == ProductType.None)
|
||||
throw new ValidationException("Field Type is empty");
|
||||
throw new ValidationException(string.Format(localizer["ValidationExceptionMessageEmptyField"], "ProductName"));
|
||||
|
||||
if (Count <= 0)
|
||||
throw new ValidationException(string.Format(localizer["ValidationExceptionMessageLessOrEqualZero"], "Count"));
|
||||
|
||||
if (TotalPrice <= 0)
|
||||
throw new ValidationException(string.Format(localizer["ValidationExceptionMessageLessOrEqualZero"], "TotalPrice"));
|
||||
|
||||
if (Ingredients == null)
|
||||
throw new ValidationException(string.Format(localizer["ValidationExceptionMessageNotInitialized"], "Ingredients"));
|
||||
|
||||
if (Ingredients.Count == 0)
|
||||
throw new ValidationException(localizer["ValidationExceptionMessageNoIngredientInProduct"]);
|
||||
|
||||
Ingredients.ForEach(x => x.Validate(localizer));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,41 +0,0 @@
|
||||
using CandyHouseContracts.Exceptions;
|
||||
using CandyHouseContracts.Extensions;
|
||||
using CandyHouseContracts.Infrastructure;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace CandyHouseContracts.DataModels;
|
||||
|
||||
public class ProductHistoryDataModel(string productId, double oldPrice) : IValidation
|
||||
{
|
||||
private readonly ProductDataModel? _product;
|
||||
|
||||
public string ProductId { get; private set; } = productId;
|
||||
|
||||
public double OldPrice { get; private set; } = oldPrice;
|
||||
|
||||
public DateTime ChangeDate { get; private set; } = DateTime.UtcNow;
|
||||
|
||||
public string ProductName => _product?.ProductName ?? string.Empty;
|
||||
|
||||
public ProductHistoryDataModel(string productId, double oldPrice, DateTime changeDate, ProductDataModel product) : this(productId, oldPrice)
|
||||
{
|
||||
ChangeDate = changeDate;
|
||||
_product = product;
|
||||
}
|
||||
|
||||
public void Validate()
|
||||
{
|
||||
if (ProductId.IsEmpty())
|
||||
throw new ValidationException("Field ProductId is empty");
|
||||
|
||||
if (!ProductId.IsGuid())
|
||||
throw new ValidationException("The value in the field ProductId is not a unique identifier");
|
||||
|
||||
if (OldPrice <= 0)
|
||||
throw new ValidationException("Field OldPrice is less than or equal to 0");
|
||||
}
|
||||
}
|
||||
@@ -1,32 +0,0 @@
|
||||
using CandyHouseContracts.Exceptions;
|
||||
using CandyHouseContracts.Extensions;
|
||||
using CandyHouseContracts.Infrastructure;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace CandyHouseContracts.DataModels;
|
||||
|
||||
public class ProductStorageDataModel(string storageId, string productId, int count) : IValidation
|
||||
{
|
||||
public string StorageId { get; private set; } = storageId;
|
||||
public string ProductId { get; private set; } = productId;
|
||||
public int Count { get; private set; } = count;
|
||||
|
||||
public void Validate()
|
||||
{
|
||||
if (StorageId.IsEmpty())
|
||||
throw new ValidationException("Field StorageId is empty");
|
||||
if (!StorageId.IsGuid())
|
||||
throw new ValidationException("The value in the field StorageId is not a unique identifier");
|
||||
if (ProductId.IsEmpty())
|
||||
throw new ValidationException("Field ProductId is empty");
|
||||
if (!ProductId.IsGuid())
|
||||
throw new ValidationException("The value in the field ProductId is not a unique identifier");
|
||||
if (Count <= 0)
|
||||
throw new ValidationException("Field Count is less than or equal to 0");
|
||||
}
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user