public ChargeStationRepository(IMongoDbContext dbContext)
 {
     _dbContext              = dbContext ?? throw new ArgumentNullException(nameof(dbContext));
     _chargeGroupsDocuments  = _dbContext.ChargeGroupsAsync();
     _chargeStationDocuments = _dbContext.ChargeStationsAsync();
 }