public Startup(IConfiguration configuration)
        {
            Configuration = configuration;
            ManagementRegistrationDbContext context = new ManagementRegistrationDbContext();

            context.SeedingRegistration();
        }
示例#2
0
 public RegisterRepository()
 {
     Context = new ManagementRegistrationDbContext();
 }
示例#3
0
 public ProfessionRepository()
 {
     Context = new ManagementRegistrationDbContext();
 }