Пример #1
0
 public Beer2(int id, string name, int breweryId, string breweryName, int styleId, string styleName, BeerLinks2 links)
 {
     this.id          = id;
     this.name        = name;
     this.breweryId   = breweryId;
     this.breweryName = breweryName;
     this.styleId     = styleId;
     this.styleName   = styleName;
     this.links       = links;
 }
Пример #2
0
 public Beer2(int id, string name, int breweryId, string breweryName, int styleId, string styleName, BeerLinks2 _links)
 {
     Id          = id;
     Name        = name;
     BreweryId   = breweryId;
     BreweryName = breweryName;
     StyleId     = styleId;
     StyleName   = styleName;
     this._links = _links;
 }