Exemplo n.º 1
0
 public Weight(double grams)
 {
     Prevent.ValueLessThanOrEqualTo(grams, 0, nameof(grams));
     this.Grams = grams;
 }