public GenericListResponse <RoomResponse> GetNearbyCity([FromQuery] string city, [FromQuery] string name, [FromQuery] int skip = 0, [FromQuery] int take = 10)
        {
            long?userId = AuthenticationService.IsAuthorized(Request, UserRole.RoomOwner, UserRole.Coach);

            if (userId == null)
            {
                Response.StatusCode = 401;
                return(new GenericListResponse <RoomResponse>(""));
            }

            RoomQueryService queryService = new RoomQueryService();

            return(queryService.GetRoomsByNameOrCity(userId, city, name, skip, take));
        }