public ListComponent(string name, int id, CardDTO card, MoveForm move)
        {
            InitializeComponent();

            cardBLL = new CardBLL();
            listBLL = new ListBLL();

            this.nameTxt.Text = name;
            _id           = id;
            cardDTO       = card;
            this.moveForm = move;
        }
        private void moveBtn_Click(object sender, EventArgs e)
        {
            MoveForm moveForm = new MoveForm(this.Location.X + this.Width, this.Location.Y + moveBtn.Location.Y, _cardId);

            moveForm.Show();
        }