Exemplo n.º 1
0
        public async Task <SupplierViewModel> GetByIdAsync(int itemId)
        {
            var entity = await _Service.GetByIdAsync(itemId, i => i.ShipOwners);

            return(new SupplierViewModel(entity));
        }