Exemplo n.º 1
0
        public async Task <bool> RemoveProductSubType(ProductSubType pSubType)
        {
            ProductSubTypesCache.SetNeedRefresh();
            var result = await DBService.DeleteProductSubType(SubTypeToModel(pSubType)).ConfigureAwait(false);

            if (result)
            {
                SubTypeUpdated(pSubType.TypeId);
            }
            return(result);
        }