public Beer2(int Id, string Name, int BreweryId, string BreweryName, int StyleId, string StyleName, Links2 _links) { this.Id = Id; this.Name = Name; this.BreweryId = BreweryId; this.BreweryName = BreweryName; this.StyleId = StyleId; this.StyleName = StyleName; this._links = _links; }
public Brewery2(int id, string name, Links2 _links) { Id = id; Name = name; this._links = _links; }
public Brewery2(int id, string name, Links2 links) { this.id = id; this.name = name; this.links = links; }