Exemple #1
0
 static Functions()
 {
     context = new EscarGoContext();
     _competitorRepository = new CompetitorRepositoryAsync(context);
     _storage        = new TableStorageRepository();
     _raceRepository = new RaceRepositoryAsync(context);
 }
Exemple #2
0
 static Functions()
 {
     context = new EscarGoContext();
     _queueRepositoryAsync = new QueueRepositoryAsync();
     _unitOfWork           = new UnitOfWorkCQRS(new EscarGoContext());
 }
Exemple #3
0
 public CompetitorRepositoryCQRS(EscarGoContext context) : base(context)
 {
     _storageRepository = new TableStorageRepository();
 }
 public TicketRepositoryAsync(EscarGoContext context) : base(context)
 {
 }
 public CompetitorRepositoryAsync(EscarGoContext context) : base(context)
 {
 }
Exemple #6
0
 public UnitOfWorkCQRS(EscarGoContext context) : base(context)
 {
 }
Exemple #7
0
 public UnitOfWorkAsync(EscarGoContext context) : base(context)
 {
 }
Exemple #8
0
 public RaceRepositoryAsync(EscarGoContext context) : base(context)
 {
 }