示例#1
0
 public NaturalResource(NaturalResourcesType type, int countResources, float price)
 {
     _value     = new NaturalResourceValue(type, countResources);
     _unitPrice = price;
 }
示例#2
0
 public NaturalResource(NaturalResourceValue value, float price)
 {
     _value     = value;
     _unitPrice = price;
 }