public PicturesController(PixDbContext context)
 {
     _context = context;
 }
 public CommentsController(PixDbContext context)
 {
     _context = context;
 }
Exemple #3
0
 public TagCountersController(PixDbContext context)
 {
     _context = context;
 }
Exemple #4
0
 public UserService(PixDbContext ctx, IOptions <AppSettings> appSettings)
 {
     _appSettings = appSettings.Value;
     _context     = ctx;
 }