using System.Collections.Generic; using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Cors; using AutoMapper; using skydiveLogs_api.Business.Interface; using skydiveLogs_api.DataContract; using skydiveLogs_api.Model; namespace skydiveLogs_api.Controllers { public class GearController : Base { public GearController(IGearService gearService, IMapper mapper) { _gearService = gearService; _mapper = mapper; } // GET: api/Gear [HttpGet] [EnableCors] public IEnumerable Get() { var result = _gearService.GetAllGears(); return _mapper.Map>(result); } // GET: api/Gear/5 [HttpGet("{id}")] [EnableCors] public GearResp Get(int id) { var result = _gearService.GetGearById(id); return _mapper.Map(result); } // POST: api/Gear [HttpPost] [EnableCors] public void Post([FromBody] GearReq value) { _gearService.AddNewGear(_mapper.Map(value)); } // PUT: api/Gear/5 [HttpPut("{id}")] [EnableCors] public void Put(int id, [FromBody] GearReq value) { _gearService.UpdateGear(id, _mapper.Map(value)); } // DELETE: api/ApiWithActions/5 [HttpDelete("{id}")] [EnableCors] public void Delete(int id) { _gearService.DeleteGearById(id); } private readonly IGearService _gearService; private readonly IMapper _mapper; } }