public PlayersController(IBeachVolleyDb beachVolleyDb)
 {
     this.beachVolleyDb = beachVolleyDb;
 }
 public CosmosDbTournamentsService(IBeachVolleyDb beachVolleyDb, ITournamentsCosmosDbClient tournamentsCosmosDbClient)
 {
     this.beachVolleyDb             = beachVolleyDb;
     this.tournamentsCosmosDbClient = tournamentsCosmosDbClient;
 }
示例#3
0
 public TournamentsController(IBeachVolleyDb beachVolleyDb, ITournamentsService tournamentsService)
 {
     this.beachVolleyDb      = beachVolleyDb;
     this.tournamentsService = tournamentsService;
 }