Example #1
0
 public GenericRepository(SoftZone_Context dbcontext)
 {
     this.dbcontext = dbcontext ?? throw new ArgumentNullException(nameof(dbcontext));
 }
 public NewsLetter_SubscriberRepository(SoftZone_Context context) : base(context)
 {
     this.context = context ?? throw new ArgumentNullException(nameof(context));
 }
Example #3
0
 public ContactUsRepositoryAsync(SoftZone_Context context) : base(context)
 {
     this.context = context ?? throw new System.ArgumentNullException(nameof(context));
 }