Inheritance: EntityBase
Exemplo n.º 1
0
 public Subscription(WeaponModel model)
 {
     if (model == null)
     {
         throw new ArgumentNullException(nameof(model));
     }
     Model = model;
 }
Exemplo n.º 2
0
 public Subscription(WeaponModel model)
 {
     if (model == null)
         throw new ArgumentNullException("model");
     Model = model;
 }