public ReadBeerBottle Remove(int id) { using (Context context = new Context()) { EfBeerBottleRepository rep = new EfBeerBottleRepository(context); BeerBottleConvert convert = new BeerBottleConvert(context); return(convert.ToRead(rep.Remove(id))); } }
public ReadBeerBottle Add(CreateBeerBottle item) { using (Context context = new Context()) { EfBeerBottleRepository rep = new EfBeerBottleRepository(context); BeerBottleConvert convert = new BeerBottleConvert(context); return(convert.ToRead(rep.Add(convert.ToEntity(item)))); } }