Example #1
0
        public ActionResult AddSighting(CreateSightingRequest newSighting)
        {
            var newSightings = _sightingRepository.AddSighting(newSighting);

            return(Ok(newSightings));
        }