public ActionResult Get()

in opbeans-dotnet/Controllers/ProductsController.cs [30:34]


		public ActionResult<Product> Get(int id) =>
			_dbDbContext.Products.Include(n => n.Type).Where(n => n.Id == id).Select(n => Mapper.Map<Product>(n))
				.First();

		[HttpGet("{id:int?}/customers")]