Exemplo n.º 1
0
 public UnitOfWork(GalleryDbContext context)
 {
     this.context = context;
 }
Exemplo n.º 2
0
 public Repository(GalleryDbContext galleryDbContext, UserManager <User> userManager)
 {
     _galleryDbContext = galleryDbContext;
     _userManager      = userManager;
 }