public void Reject(ITransferItem item)
        {
            List <ITransferItem> tempList = new List <ITransferItem>();

            tempList.Add(item);
            Reject(tempList);
        }
        public void Accept(string path, ITransferItem item)
        {
            List <ITransferItem> tempList = new List <ITransferItem>();

            tempList.Add(item);
            Accept(path, tempList);
        }
 public TransferItemView(ITransferItem item1)
 {
     item       = item1;
     IsAccepted = true;
 }
 public void Stop(ITransferItem stoppingItem)
 {
     StopTransfer(stoppingItem.TrId, FileTransferState.StoppedByUser, false);
 }
 public DropCommand(ITransferItem iTransferItem)
 {
     _iTransferItem = iTransferItem;
 }