Exemple #1
0
 public void ExcluirVendedor()
 {
     try
     {
         using (ServicoSISClient Servico = new ServicoSISClient())
         {
             Servico.DeleteVendedor(VendedorSelected);
             VendedorSelected = null;
         }
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }