public CatalogCreator(MyRoomDbContext context)
 {
     this.Context = context;
     productRepo = new ProductRepository(context);
 }
Example #2
0
 public UserInformation(MyRoomDbContext context)
 {
     this.Context = context;
     _genericRepository = new AccountRepository(context);
 }