Exemplo n.º 1
0
 public DbMigrationsEndpoint(
     IDbMigrationsOptions options,
     IServiceProvider container,
     ILogger <DbMigrationsEndpoint> logger = null)
     : this(options, container, new DbMigrationsEndpointHelper(), logger)
 {
 }
Exemplo n.º 2
0
 public DbMigrationsEndpoint(
     IDbMigrationsOptions options,
     IServiceProvider container,
     DbMigrationsEndpointHelper endpointHelper,
     ILogger <DbMigrationsEndpoint> logger = null)
     : base(options)
 {
     _container      = container;
     _endpointHelper = endpointHelper;
     _logger         = logger;
 }