108 lines
3.3 KiB
C#
108 lines
3.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using LawFirmContracts.BindingModels;
|
|
using LawFirmContracts.BusinessLogicsContracts;
|
|
using LawFirmContracts.SearchModels;
|
|
using LawFirmContracts.StorageContracts;
|
|
using LawFirmContracts.ViewModels;
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
namespace LawFirmBusinessLogic.BusinessLogics
|
|
{
|
|
public class CaseLogic : ICaseLogic
|
|
{
|
|
private readonly ILogger _logger;
|
|
private readonly ICaseStorage _caseStorage;
|
|
|
|
public CaseLogic(ILogger<CaseLogic> logger, ICaseStorage caseStorage)
|
|
{
|
|
_logger = logger;
|
|
_caseStorage = caseStorage;
|
|
}
|
|
|
|
public List<CaseViewModel>? ReadList(CaseSearchModel? model)
|
|
{
|
|
_logger.LogInformation("ReadList. Id:{Id}", model?.Id);
|
|
var list = model == null ? _caseStorage.GetFullList() : _caseStorage.GetFilteredList(model);
|
|
if (list == null)
|
|
{
|
|
_logger.LogWarning("ReadList return null list");
|
|
return null;
|
|
}
|
|
_logger.LogInformation("ReadList. Count:{Count}", list.Count);
|
|
return list;
|
|
}
|
|
|
|
public CaseViewModel? ReadElement(CaseSearchModel model)
|
|
{
|
|
if (model == null)
|
|
{
|
|
throw new ArgumentNullException(nameof(model));
|
|
}
|
|
_logger.LogInformation("ReadElement. Id:{Id}", model.Id);
|
|
var element = _caseStorage.GetElement(model);
|
|
if (element == null)
|
|
{
|
|
_logger.LogWarning("ReadElement element not found");
|
|
return null;
|
|
}
|
|
_logger.LogInformation("ReadElement find. Id:{Id}", element.Id);
|
|
return element;
|
|
}
|
|
|
|
public bool Create(CaseBindingModel model)
|
|
{
|
|
CheckModel(model);
|
|
if (_caseStorage.Insert(model) == null)
|
|
{
|
|
_logger.LogWarning("Insert operation failed");
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
public bool Update(CaseBindingModel model)
|
|
{
|
|
CheckModel(model);
|
|
if (_caseStorage.Update(model) == null)
|
|
{
|
|
_logger.LogWarning("Update operation failed");
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
public bool Delete(CaseBindingModel model)
|
|
{
|
|
CheckModel(model, false);
|
|
_logger.LogInformation("Delete. Id:{Id}", model.Id);
|
|
if (_caseStorage.Delete(model) == null)
|
|
{
|
|
_logger.LogWarning("Delete operation failed");
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
private void CheckModel(CaseBindingModel model, bool withParams = true)
|
|
{
|
|
if (model == null)
|
|
{
|
|
throw new ArgumentNullException(nameof(model));
|
|
}
|
|
if (!withParams)
|
|
{
|
|
return;
|
|
}
|
|
if (model.CustomerId < 0)
|
|
{
|
|
throw new InvalidOperationException("Неверный ID клиента");
|
|
}
|
|
_logger.LogInformation("Case. DateCreated:{DateCreated}. CustomerId:{CustomerId}. Id:{Id}", model.DateCreated, model.CustomerId, model.Id);
|
|
}
|
|
}
|
|
}
|
|
|