private void _typesView_UserDeletedRow(object sender, DataGridViewRowEventArgs e)
        {
            PaperType type = e.Row.Tag as PaperType;

            PriceManager.RemovePaperType(type);

            ValidateCells(null);
        }