public int Add(BeerData beerData) { int newId = beerRepository.Insert(new Demo_API_BeerAPI.DAL.Entities.BeerEntity() { Name = beerData.Name, Color = beerData.Color, Degree = beerData.Degree, IdBrewery = beerData.IdBrewery, IdBrand = beerData.IdBrand }); return(newId); }