private Const.QueueStatus _status; //ステータス

        #endregion Fields

        #region Constructors

        public QueueContainer()
        {
            //使わない
            _no = 0;
            _res = null;
            _status = Const.QueueStatus.QUEUE_STATUS_NULL;
            _rtime = DateTime.MinValue;
            _fingerprint = null;
        }
 public QueueContainer(string resname, string resmail, string res)
 {
     _no = ++number;
     _resname = resname;
     _resmail = resmail;
     _res = res;
     _status = Const.QueueStatus.QUEUE_STATUS_WAIT;
     _rtime = DateTime.Now;
     _fingerprint = null;
     _err = Const.ErrorStatus.ERROR_STATUS_NULL;
 }