public IActionResult Get(int id)
        {
            var well = wellRep.Find(id);

            if (well == null)
            {
                return(NotFound());
            }

            return(new ObjectResult(well));
        }