Exemplo n.º 1
0
        public void SetUp()
        {
            var services = SetServices();

            this.Provider = services.BuildServiceProvider();
            this.Context  = this.Provider.GetRequiredService <EdumanDbContext>();
            SetScoppedServiceProvider();
        }
Exemplo n.º 2
0
 public ReflectionService(EdumanDbContext context, UserManager <EdumanUser> userManager) : base(context)
 {
     this.userManager = userManager;
 }
Exemplo n.º 3
0
 public AbsenceService(EdumanDbContext context, UserManager <EdumanUser> userManager) : base(context)
 {
     this.userManager = userManager;
 }
Exemplo n.º 4
0
 protected DataService(EdumanDbContext context)
 {
     this.context = context;
 }