Example #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", "*****@*****.**");
     }
 }
 public IndexModel(RandyPowell.Models.RandyPowellContext context)
 {
     _context = context;
 }
Example #3
0
 public DetailsModel(RandyPowell.Models.RandyPowellContext context)
 {
     _context = context;
     excon    = new ExperienceController(_context);
 }
 public CreateModel(RandyPowell.Models.RandyPowellContext context)
 {
     _context = context;
 }
 public SkillsModel(RandyPowell.Models.RandyPowellContext context)
 {
     _context = context;
 }
Example #6
0
 public WorkModel(RandyPowell.Models.RandyPowellContext context)
 {
     _context = context;
 }