Ejemplo n.º 1
0
        public StoreDTO GetStoreWithInventory(string storeId)
        {
            Guid guid     = Guid.Parse(storeId);
            var  store    = _StoreRepository.GetStoreWithInventory(guid);
            var  storeDto = new StoreDTO(store);

            return(storeDto);
        }