Exemplo n.º 1
0
 public Course()
 {
     ExpirationTime = DateTimeOffset.Now;
     Professor = new Professor();
 }
Exemplo n.º 2
0
 public Course()
 {
     ExpirationTime = DateTimeOffset.Now;
     Professor      = new Professor();
     Cost           = Decimal.Round((Decimal)(r.Next(50, 150) * r.NextDouble()), 2);
 }
Exemplo n.º 3
0
 public Course()
 {
     ExpirationTime = DateTimeOffset.Now;
     Professor      = new Professor();
 }
Exemplo n.º 4
0
 public Course()
 {
     ExpirationTime = DateTimeOffset.Now;
     Professor = new Professor();
     Cost = Decimal.Round((Decimal)(r.Next(50, 150) * r.NextDouble()), 2);
 }