Beispiel #1
0
 public TimedJobs(ILogger <TimedJobs> logger, FishbuyContext context,
                  QRCodeContext QRcontext, IConfiguration config)
 {
     _logger          = logger;
     _context         = context;
     _QRcontext       = QRcontext;
     _imageFolderPath = config.GetSection("AppSettings:ImageFolder").Value;
 }
Beispiel #2
0
 public PostRepository(FishbuyContext context, IConfiguration config)
 {
     _context     = context;
     _imageServer = config.GetSection("Server:Images").Value;
 }
 public CollectionRepository(FishbuyContext context)
 {
     _context = context;
 }
Beispiel #4
0
 public ImageRepository(FishbuyContext context)
 {
     _context = context;
 }
Beispiel #5
0
 public SearchRepository(FishbuyContext context)
 {
     _context = context;
 }
Beispiel #6
0
 public AuthRepository(FishbuyContext context)
 {
     _context = context;
 }