Example #1
0
 public CreateModel(SezamDbContext context)
 {
     _context = context;
 }
Example #2
0
 public DetailsModel(SezamDbContext context)
 {
     _context = context;
 }
Example #3
0
 public IndexModel(SezamDbContext context)
 {
     _context = context;
 }
Example #4
0
 public IndexModel(SezamDbContext context, ILogger <IndexModel> logger)
 {
     _logger  = logger;
     _context = context;
 }
Example #5
0
 public ConfModel(SezamDbContext context, ILogger <PrivacyModel> logger)
 {
     _logger  = logger;
     _context = context;
 }
Example #6
0
 public EditModel(SezamDbContext context)
 {
     _context = context;
 }
Example #7
0
 public DeleteModel(SezamDbContext context)
 {
     _context = context;
 }