Ejemplo n.º 1
0
        public async Task <ICollection <Booking> > GetAllBokingsForSpot(int spotId)
        {
            var result = _repository.GetAllBookingsForSpot(spotId);

            return(result);
        }