Example #1
0
        public static Charge MakeFake(GDID gdid)
        {
            var c = new Charge()
              {
            Amount = new Amount("usd", gdid.ID % 1897),
            Qty = (int)(gdid.ID % 29),
            G_Product = gdid,
            Notes = new String('n', (int)(gdid.ID % 137))
              };

              return c;
        }