public CourseCommandHandler(IUnitOfWork uow, IBus bus, IDomainNotificationHandler <DomainDotification> notifications, IHelperService helperService, TouchTypingGoContext context, IUser user)
 {
     _uow           = uow;
     _bus           = bus;
     _notifications = notifications;
     _helperService = helperService;
     _context       = context;
     _user          = user;
 }
 public LessonPresentationRepository(TouchTypingGoContext db, IUser user) : base(db, user)
 {
 }
Esempio n. 3
0
 public StudentRepository(TouchTypingGoContext db, IUser user) : base(db, user)
 {
 }
Esempio n. 4
0
 public TeacherRepository(TouchTypingGoContext db, IUser user) : base(db, user)
 {
 }
Esempio n. 5
0
 public KeyboardRepository(TouchTypingGoContext db, IUser user) : base(db, user)
 {
 }
 public LessonResultRepository(TouchTypingGoContext db, IUser user) : base(db, user)
 {
 }
 public InstitutionRepository(TouchTypingGoContext db, IUser user) : base(db, user)
 {
     _db = db;
 }
Esempio n. 8
0
 public CourseRepository(TouchTypingGoContext context, IUser user) : base(context, user)
 {
     _context = context;
 }
Esempio n. 9
0
 public CourseQueryHandler(TouchTypingGoContext context)
 {
     _context = context;
 }
Esempio n. 10
0
 public AddressRepository(TouchTypingGoContext db, IUser user) : base(db, user)
 {
 }
Esempio n. 11
0
 public UnitOfWork(TouchTypingGoContext context)
 {
     _context = context;
 }
 public LessonPresentationQueryHandler(TouchTypingGoContext context)
 {
     _context = context;
 }
Esempio n. 13
0
 protected Repository(TouchTypingGoContext db, IUser user)
 {
     Db    = db;
     User  = user;
     DbSet = Db.Set <TEntity>();
 }