示例#1
0
        public bool StoreExists([FromRoute] string storeOwner, [FromRoute] string storeName, [FromBody] Location location)
        {
            bool exists = _StoreRepository.StoreExists(storeOwner, storeName, location);

            return(exists);
        }