2023-04-01 15:14:54 +04:00
|
|
|
|
using BankYouBankruptContracts.BindingModels;
|
|
|
|
|
using BankYouBankruptContracts.BusinessLogicsContracts;
|
|
|
|
|
using BankYouBankruptContracts.SearchModels;
|
|
|
|
|
using BankYouBankruptContracts.StoragesContracts;
|
|
|
|
|
using BankYouBankruptContracts.ViewModels;
|
2023-05-14 20:22:27 +04:00
|
|
|
|
using BankYouBankruptDataModels.Enums;
|
2023-04-01 15:14:54 +04:00
|
|
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace BankYouBankruptBusinessLogic.BusinessLogics
|
|
|
|
|
{
|
|
|
|
|
public class CashWithdrawalLogic : ICashWithdrawalLogic
|
|
|
|
|
{
|
|
|
|
|
private readonly ILogger _logger;
|
|
|
|
|
|
|
|
|
|
private readonly ICashWithdrawalStorage _cashWithdrawalStorage;
|
|
|
|
|
|
2023-05-14 20:22:27 +04:00
|
|
|
|
private readonly IDebitingStorage _debitingStorage;
|
|
|
|
|
|
|
|
|
|
public CashWithdrawalLogic(ILogger<CashWithdrawalLogic> logger, ICashWithdrawalStorage cashWithdrawalStorage, IDebitingStorage debitingStorage)
|
2023-04-01 15:14:54 +04:00
|
|
|
|
{
|
|
|
|
|
_logger = logger;
|
|
|
|
|
_cashWithdrawalStorage = cashWithdrawalStorage;
|
2023-05-14 20:22:27 +04:00
|
|
|
|
_debitingStorage = debitingStorage;
|
2023-04-01 15:14:54 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public CashWithdrawalViewModel? ReadElement(CashWithdrawalSearchModel model)
|
|
|
|
|
{
|
|
|
|
|
if (model == null)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException(nameof(model));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_logger.LogInformation("ReadElement. AccountId:{AccountId}. Sum:{Sum}. DateOperation:{DateOperation}. Id:{Id}",
|
2023-04-06 21:48:31 +04:00
|
|
|
|
model.AccountId, model.Sum, model.DateTo, model?.Id);
|
2023-04-01 15:14:54 +04:00
|
|
|
|
|
|
|
|
|
var element = _cashWithdrawalStorage.GetElement(model);
|
|
|
|
|
|
|
|
|
|
if (element == null)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogWarning("ReadElement element not found");
|
|
|
|
|
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_logger.LogInformation("ReadElement find. Id:{Id}", element.Id);
|
|
|
|
|
|
|
|
|
|
return element;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public List<CashWithdrawalViewModel>? ReadList(CashWithdrawalSearchModel? model)
|
|
|
|
|
{
|
2023-05-18 12:19:37 +04:00
|
|
|
|
_logger.LogInformation("ReadElement. AccountId:{AccountId}. Sum:{Sum}. DateOperation:{DateOperation}. Id:{Id}",
|
|
|
|
|
model?.AccountId, model?.Sum, model?.DateTo, model?.Id);
|
2023-04-01 15:14:54 +04:00
|
|
|
|
|
|
|
|
|
//list хранит весь список в случае, если model пришло со значением null на вход метода
|
|
|
|
|
var list = model == null ? _cashWithdrawalStorage.GetFullList() : _cashWithdrawalStorage.GetFilteredList(model);
|
|
|
|
|
|
|
|
|
|
if (list == null)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogWarning("ReadList return null list");
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_logger.LogInformation("ReadList. Count:{Count}", list.Count);
|
|
|
|
|
|
|
|
|
|
return list;
|
|
|
|
|
}
|
|
|
|
|
|
2023-05-17 20:00:17 +04:00
|
|
|
|
public bool Create(CashWithdrawalBindingModel model, bool flag)
|
2023-04-01 15:14:54 +04:00
|
|
|
|
{
|
|
|
|
|
CheckModel(model);
|
|
|
|
|
|
2023-05-18 13:29:34 +04:00
|
|
|
|
if (flag)
|
2023-04-01 15:14:54 +04:00
|
|
|
|
{
|
2023-05-18 13:29:34 +04:00
|
|
|
|
if (_cashWithdrawalStorage.Insert(model) == null)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogWarning("Insert operation failed");
|
2023-04-01 15:14:54 +04:00
|
|
|
|
|
2023-05-18 13:29:34 +04:00
|
|
|
|
return false;
|
|
|
|
|
}
|
2023-04-01 15:14:54 +04:00
|
|
|
|
|
2023-05-17 20:00:17 +04:00
|
|
|
|
_debitingStorage.Update(new DebitingBindingModel
|
|
|
|
|
{
|
|
|
|
|
Id = model.DebitingId,
|
|
|
|
|
DateClose = DateTime.Now,
|
|
|
|
|
Status = StatusEnum.Закрыта
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
_debitingStorage.Update(new DebitingBindingModel
|
|
|
|
|
{
|
|
|
|
|
Id = model.DebitingId,
|
|
|
|
|
DateClose = DateTime.Now,
|
|
|
|
|
Status = StatusEnum.Отклонено
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2023-04-01 15:14:54 +04:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public bool Update(CashWithdrawalBindingModel model)
|
|
|
|
|
{
|
|
|
|
|
CheckModel(model);
|
|
|
|
|
|
|
|
|
|
if (_cashWithdrawalStorage.Update(model) == null)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogWarning("Update operation failed");
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public bool Delete(CashWithdrawalBindingModel model)
|
|
|
|
|
{
|
|
|
|
|
CheckModel(model, false);
|
|
|
|
|
|
|
|
|
|
_logger.LogInformation("Delete. Id:{Id}", model.Id);
|
|
|
|
|
|
|
|
|
|
if (_cashWithdrawalStorage.Delete(model) == null)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogWarning("Delete operation failed");
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//проверка входного аргумента для методов Insert, Update и Delete
|
|
|
|
|
private void CheckModel(CashWithdrawalBindingModel model, bool withParams = true)
|
|
|
|
|
{
|
|
|
|
|
if (model == null)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException(nameof(model));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//так как при удалении передаём как параметр false
|
|
|
|
|
if (!withParams)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//проверка на корректность Id счёта
|
2023-05-14 20:22:27 +04:00
|
|
|
|
if (model.AccountId < 0)
|
2023-04-01 15:14:54 +04:00
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException("Некорректный Id счёта", nameof(model.AccountId));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//проверка на корректность снимаемой суммы
|
|
|
|
|
if (model.Sum <= 0)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException("Снимаемая сумма не может раняться нулю или быть меньше его", nameof(model.Sum));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//проверка на корректную дату операции
|
|
|
|
|
if (model.DateOperation > DateTime.Now)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException("Дата операции не может быть позднее текущей", nameof(model.DateOperation));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_logger.LogInformation("CashWithdrawal: AccountId:{AccountId}. Sum:{Sum}. DateOperation:{DateOperation}. Id:{Id}",
|
|
|
|
|
model.AccountId, model.Sum, model.DateOperation, model?.Id);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|