| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- using DutchTreat.Data;
- using DutchTreat.Data.Entities;
- using Microsoft.AspNetCore.Mvc;
- using Microsoft.Extensions.Logging;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace DutchTreat.Controllers
- {
- [Route("api/[Controller]")]
- [ApiController]
- [Produces("application/json")]
- public class ProductsController : Controller
- {
- private readonly IDutchRepository _repository;
- private readonly ILogger<ProductsController> _logger;
- public ProductsController(IDutchRepository repository, ILogger<ProductsController> logger)
- {
- _repository = repository;
- _logger = logger;
- }
- [HttpGet]
- [ProducesResponseType(200)]
- [ProducesResponseType(400)]
- public ActionResult<IEnumerable<Product>> Get()
- {
- try
- {
- return Ok(_repository.GetAllProducts());
- }
- catch (Exception ex)
- {
- _logger.LogError($"Failed to get products: {ex}");
- return BadRequest("Failed to get products");
- }
- }
- }
- }
|