Exemplo n.º 1
0
        public async Task <StoreData> getStoreById(Guid pid)
        {
            Store s = await marketStores.GetStoreById(pid);

            if (s != null)
            {
                return(new StoreData((Store)s));
            }
            return(null);
        }