public ActionResult <GasStationCreateDTO> PostGasStation(GasStationCreateDTO gasStationCreateDTO) { var gasStationModel = _mapper.Map <GasStation>(gasStationCreateDTO); _repository.PostGasStation(gasStationModel); var gasStationReadDTO = _mapper.Map <GasStationReadDTO>(gasStationModel); //return Created(new Uri("https://saitynolaboras20201008165604.azurewebsites.net/GasStations/" + id), gasStationCreateDTO); return(CreatedAtRoute(nameof(GetGasStationById), new { Id = gasStationReadDTO.Id }, gasStationReadDTO)); }
public ActionResult PostGasStation(int id, GasStationCreateDTO gasStationCreateDTO) { return(BadRequest()); }