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