Ejemplo n.º 1
0
 public static async Task Initialize(IServiceProvider serviceProvider, string testUserPw)
 {
     using (var context = new RandyPowellContext(
                serviceProvider.GetRequiredService <DbContextOptions <RandyPowellContext> >()))
     {
         var adminID = await EnsureUser(serviceProvider, "dummyPW", "*****@*****.**");
     }
 }
Ejemplo n.º 2
0
 public IndexModel(RandyPowell.Models.RandyPowellContext context)
 {
     _context = context;
 }
Ejemplo n.º 3
0
 public DetailsModel(RandyPowell.Models.RandyPowellContext context)
 {
     _context = context;
     excon    = new ExperienceController(_context);
 }
Ejemplo n.º 4
0
 public CreateModel(RandyPowell.Models.RandyPowellContext context)
 {
     _context = context;
 }
Ejemplo n.º 5
0
 public SkillsModel(RandyPowell.Models.RandyPowellContext context)
 {
     _context = context;
 }
Ejemplo n.º 6
0
 public WorkModel(RandyPowell.Models.RandyPowellContext context)
 {
     _context = context;
 }