private void btnRemoveService_Click(object sender, EventArgs e)
        {
            ServicoDTO servicoDTO = new ServicoDTO();

            newCollection.Remove(dataGridViewServices.SelectedRows[0].DataBoundItem as ServicoDTO);
            dataGridViewServices.DataSource = null;
            dataGridViewServices.DataSource = newCollection;
        }