PIbd-21_Anisin_R.S._CarRepa.../CarRepairShop/CarRepairShopRestApi/Controllers/MainController.cs

82 lines
2.2 KiB
C#
Raw Normal View History

2024-04-27 21:36:54 +04:00
using CarRepairShopContracts.BindingModels;
using CarRepairShopContracts.BusinessLogicsContracts;
using CarRepairShopContracts.SearchModels;
using CarRepairShopContracts.ViewModels;
using Microsoft.AspNetCore.Mvc;
namespace CarRepairShopRestApi.Controllers
{
[Route("api/[controller]/[action]")]
[ApiController]
public class MainController : Controller
{
private readonly ILogger _logger;
private readonly IOrderLogic _order;
private readonly IRepairLogic _repair;
public MainController(ILogger<MainController> logger, IOrderLogic order, IRepairLogic repair)
{
_logger = logger;
_order = order;
_repair = repair;
}
[HttpGet]
public List<RepairViewModel>? GetRepairList()
{
try
{
return _repair.ReadList(null);
}
catch (Exception ex)
{
2024-04-27 21:43:50 +04:00
_logger.LogError(ex, "Receiving repair list error");
2024-04-27 21:36:54 +04:00
throw;
}
}
[HttpGet]
public RepairViewModel? GetRepair(int repairId)
{
try
{
return _repair.ReadElement(new RepairSearchModel { Id = repairId });
}
catch (Exception ex)
{
2024-04-27 21:44:58 +04:00
_logger.LogError(ex, "Error receiving repair by id = {Id}", repairId);
2024-04-27 21:36:54 +04:00
throw;
}
}
[HttpGet]
public List<OrderViewModel>? GetOrders(int clientId)
{
try
{
return _order.ReadList(new OrderSearchModel { ClientId = clientId });
}
catch (Exception ex)
{
_logger.LogError(ex, "Error receiving the list of client orders id = {Id}", clientId);
throw;
}
}
[HttpPost]
public void CreateOrder(OrderBindingModel model)
{
try
{
_order.CreateOrder(model);
}
catch (Exception ex)
{
_logger.LogError(ex, "Order creation error");
throw;
}
}
}
}