Ejemplo n.º 1
0
        public async Task <bool> RemoveProductType(ProductType pType)
        {
            var result = await DBService.DeleteProductType(TypeToModel(pType)).ConfigureAwait(false);

            if (result)
            {
                TypeUpdated();
            }
            return(result);
        }