public Location GetLocation(int locationId)
        {
            var d = new GetLocationDataDelegate(locationId);

            return(executor.ExecuteReader(d));
        }
        public Location GetLocation(string email)
        {
            var d = new GetLocationDataDelegate(email);

            return(executor.ExecuteReader(d));
        }