Files
SkydiveLogs/Back/skydiveLogs-api/Controllers/GearController.cs
T
2026-03-25 21:00:48 +01:00

96 lines
2.7 KiB
C#

using System.Collections.Generic;
using AutoMapper;
using Microsoft.AspNetCore.Cors;
using Microsoft.AspNetCore.Mvc;
using skydiveLogs_api.DataContract;
using skydiveLogs_api.Domain;
using skydiveLogs_api.DomainBusiness.Interfaces;
namespace skydiveLogs_api.Controllers
{
public class GearController : Base
{
#region Public Constructors
public GearController(IGearService gearService,
IMapper mapper)
{
_gearService = gearService;
_mapper = mapper;
}
#endregion Public Constructors
#region Public Methods
/// <summary>
/// Deletes a gear item by its ID.
/// </summary>
/// <param name="id">The gear ID to delete.</param>
[HttpDelete("{id}")]
[EnableCors]
public void Delete(int id)
{
_gearService.DeleteGearById(id);
}
/// <summary>
/// Retrieves a list of all gear items.
/// </summary>
/// <returns>A collection of GearResp objects containing all gear data.</returns>
[HttpGet]
[EnableCors]
public IEnumerable<GearResp> Get()
{
var result = _gearService.GetAllGears();
return _mapper.Map<IEnumerable<GearResp>>(result);
}
/// <summary>
/// Retrieves a gear item by its ID.
/// </summary>
/// <param name="id">The gear ID to retrieve.</param>
/// <returns>A GearResp object containing the gear details.</returns>
[HttpGet("{id}")]
[EnableCors]
public GearResp Get(int id)
{
var result = _gearService.GetGearById(id);
return _mapper.Map<GearResp>(result);
}
/// <summary>
/// Adds a new gear item to the system.
/// </summary>
/// <param name="value">GearReq object containing the new gear data.</param>
[HttpPost]
[EnableCors]
public void Post([FromBody] GearReq value)
{
_gearService.AddNewGear(_mapper.Map<Gear>(value));
}
/// <summary>
/// Updates an existing gear item.
/// </summary>
/// <param name="id">The gear ID to update.</param>
/// <param name="value">GearReq object containing the updated gear data.</param>
[HttpPut("{id}")]
[EnableCors]
public void Put(int id, [FromBody] GearReq value)
{
_gearService.UpdateGear(id, _mapper.Map<Gear>(value));
}
#endregion Public Methods
#region Private Fields
private readonly IGearService _gearService;
private readonly IMapper _mapper;
#endregion Private Fields
}
}