public void ExcluirCargo()
 {
     try
     {
         using (ServicoSISClient Servico = new ServicoSISClient())
         {
             Servico.DeleteCargo(CargoSelected);
             CargoSelected = null;
         }
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }