Example #1
0
 public UnitOfWork(LinkContractorDbContext context)
 {
     Context    = context;
     SavedData  = new SavedDataRepository(context);
     ShortCodes = new ShortCodeRepository(context);
 }
Example #2
0
 public ShortCodeRepository(LinkContractorDbContext context) : base(context)
 {
     Context = context;
 }
Example #3
0
 public SavedDataRepository(LinkContractorDbContext context) : base(context)
 {
     Context = context;
 }