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