public DOTICMigratorModule(DOTICEntityFrameworkCoreModule abpZeroTemplateEntityFrameworkCoreModule)
        {
            abpZeroTemplateEntityFrameworkCoreModule.SkipDbSeed = true;

            _appConfiguration = AppConfigurations.Get(
                typeof(DOTICMigratorModule).GetAssembly().GetDirectoryPathOrNull()
                );
        }
 public DOTICTestModule(DOTICEntityFrameworkCoreModule abpZeroTemplateEntityFrameworkCoreModule)
 {
     abpZeroTemplateEntityFrameworkCoreModule.SkipDbContextRegistration = true;
 }
 public DOTICWebFrontEndModule(IHostingEnvironment env, DOTICEntityFrameworkCoreModule abpZeroTemplateEntityFrameworkCoreModule)
 {
     _appConfiguration = env.GetAppConfiguration();
     abpZeroTemplateEntityFrameworkCoreModule.SkipDbSeed = true;
 }