コード例 #1
0
        public IEnumerable <Customer> GetCustomers(int locationId)
        {
            LocationAttribute locationAttribute = getAttribute();

            // use translated id
            int translatedLocationId = locationAttribute.Translate(locationId);

            return(getAll(translatedLocationId));
        }