using IceCreamShopContracts.BindingModels; using IceCreamShopContracts.BusinessLogicsContracts; using IceCreamShopContracts.SearchModels; using IceCreamShopContracts.ViewModels; using Microsoft.AspNetCore.Mvc; namespace IceCreamShopRestApi.Controllers { [Route("api/[controller]/[action]")] [ApiController] public class MainController : Controller { private readonly ILogger _logger; private readonly IOrderLogic _order; private readonly IIceCreamLogic _iceCream; public MainController(ILogger logger, IOrderLogic order, IIceCreamLogic iceCream) { _logger = logger; _order = order; _iceCream = iceCream; } [HttpGet] public List? GetIceCreamList() { try { return _iceCream.ReadList(null); } catch (Exception ex) { _logger.LogError(ex, "Receiving ice cream list error"); throw; } } [HttpGet] public IceCreamViewModel? GetIceCream(int iceCreamId) { try { return _iceCream.ReadElement(new IceCreamSearchModel { Id = iceCreamId }); } catch (Exception ex) { _logger.LogError(ex, "Error receiving ice cream by id = {Id}", iceCreamId); throw; } } [HttpGet] public List? 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; } } } }