using SewingDressesContracts.BindingModels; using SewingDressesContracts.BusinessLogicsContracts; using SewingDressesContracts.SearchModels; using SewingDressesContracts.ViewModels; using Microsoft.AspNetCore.Mvc; using DocumentFormat.OpenXml.Office2010.Excel; namespace SewingDressesRestApi.Controllers { [Route("api/[controller]/[action]")] [ApiController] public class MainController : Controller { private readonly ILogger _logger; private readonly IOrderLogic _order; private readonly IDressLogic _dress; public MainController(ILogger logger, IOrderLogic order, IDressLogic dress) { _logger = logger; _order = order; _dress = dress; } [HttpGet] public List? GetDressList() { try { return _dress.ReadList(null); } catch (Exception ex) { _logger.LogError(ex, "Ошибка получения списка продуктов"); throw; } } [HttpGet] public DressViewModel? GetDress(int dressId) { try { return _dress.ReadElement(new DressSearchModel { Id = dressId }); } catch (Exception ex) { _logger.LogError(ex, "Ошибка получения продукта по id={Id}", dressId); throw; } } [HttpGet] public List? 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; } } } }