public CodeSwifterStarterDbSeeder(ICodeSwifterStarterDbContext context,
                                   ServerConfiguration serverConfiguration, ILogger <CodeSwifterStarterDbSeeder> logger)
 {
     _context             = context;
     _serverConfiguration = serverConfiguration;
     _logger = logger;
 }
 public CodeFormattingTests(ICodeSwifterStarterDbContext context,
                            IAuthenticatedUserService authenticatedUserService,
                            ServerConfiguration serverConfiguration, ILogger <CodeFormattingTests> logger) :
     base(context, authenticatedUserService)
 {
     _serverConfiguration = serverConfiguration;
     _logger = logger;
 }
 public CrudWarningService(INotificationService notificationService, ICodeSwifterStarterDbContext ctx)
 {
     _notificationService = notificationService;
     _ctx = ctx;
 }
 protected BaseTest(ICodeSwifterStarterDbContext context, IAuthenticatedUserService authenticatedUserService)
 {
     _context = context;
     _authenticatedUserService = authenticatedUserService;
 }
Esempio n. 5
0
 protected DynamicQueryManager(ICodeSwifterStarterDbContext context, IMapper mapper)
 {
     Context = context;
     Mapper  = mapper;
 }