public void BlockCard(long number, DateTime expiresEnd, ushort CVV)
        {
            Card temp = GetCard(number, expiresEnd, CVV);

            CheckCardOperationsByExeption(number, expiresEnd, CVV);

            temp.IsBlocked = true;

            _dbContext.Update(temp);
            _dbContext.SaveChanges();
        }