86 lines
2.5 KiB
C#
86 lines
2.5 KiB
C#
using DocumentFormat.OpenXml.Office2010.Excel;
|
|
using SoftwareInstallationContracts.BindingModels;
|
|
using SoftwareInstallationContracts.BusinessLogicsContracts;
|
|
using SoftwareInstallationContracts.SearchModels;
|
|
using SoftwareInstallationContracts.ViewModels;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace SoftwareInstallationRestApi.Controllers
|
|
{
|
|
[Route("api/[controller]/[action]")]
|
|
[ApiController]
|
|
public class MainController : Controller
|
|
{
|
|
private readonly ILogger _logger;
|
|
private readonly IOrderLogic _order;
|
|
private readonly IPackageLogic _Software;
|
|
public MainController(ILogger<MainController> logger, IOrderLogic order,
|
|
IPackageLogic Software)
|
|
{
|
|
_logger = logger;
|
|
_order = order;
|
|
_Software = Software;
|
|
}
|
|
[HttpGet]
|
|
public List<PackageViewModel>? GetSoftwareList()
|
|
{
|
|
try
|
|
{
|
|
return _Software.ReadList(null);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
_logger.LogError(ex, "Ошибка получения списка мороженного");
|
|
throw;
|
|
}
|
|
}
|
|
[HttpGet]
|
|
public PackageViewModel? GetSoftware(int SoftwareId)
|
|
{
|
|
try
|
|
{
|
|
return _Software.ReadElement(new PackageSearchModel
|
|
{
|
|
Id =
|
|
SoftwareId
|
|
});
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
_logger.LogError(ex, "Ошибка получения продукта по id={Id}",
|
|
SoftwareId);
|
|
throw;
|
|
}
|
|
}
|
|
[HttpGet]
|
|
public List<OrderViewModel>? GetOrders(int clientId)
|
|
{
|
|
try
|
|
{
|
|
return _order.ReadList(new OrderSearchModel
|
|
{
|
|
ClientId = clientId
|
|
});
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
_logger.LogError(ex, "Ошибка получения списка заказов клиента id ={ Id}", clientId);
|
|
throw;
|
|
}
|
|
}
|
|
[HttpPost]
|
|
public void CreateOrder(OrderBindingModel model)
|
|
{
|
|
try
|
|
{
|
|
_order.CreateOrder(model);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
_logger.LogError(ex, "Ошибка создания заказа");
|
|
throw;
|
|
}
|
|
}
|
|
}
|
|
}
|