Ejemplo n.º 1
0
        public EnqueueCommentBotReq_serializable(EnqueueCommentBotReq item)
        {
            CaseId              = item.CaseId;
            CaseCommentGUID     = item.CaseCommentGUID;
            SCInternalCode      = item.SCInternalCode;
            ElementTypePublic   = item.ElementTypePublic;
            CaseCommentTextSent = item.CaseCommentTextSent;
            AccountUnique       = item.AccountUnique;

            SendedDate = item.SendedDate;

            ArrivedDate = item.ArrivedDate;
        }
Ejemplo n.º 2
0
        public EnqueueCommentBotReq get()
        {
            EnqueueCommentBotReq item = new EnqueueCommentBotReq();

            item.CaseId              = CaseId;
            item.CaseCommentGUID     = CaseCommentGUID;
            item.SCInternalCode      = SCInternalCode;
            item.ElementTypePublic   = ElementTypePublic;
            item.CaseCommentTextSent = CaseCommentTextSent;
            item.AccountUnique       = AccountUnique;

            item.SendedDate = SendedDate;

            item.ArrivedDate = ArrivedDate;

            return(item);
        }
Ejemplo n.º 3
0
 public static void encolar_sended(EnqueueCommentBotReq item)
 {
     stored.StorageObject.Add(new EnqueueCommentBotReq_serializable(item));
     stored.Save();
 }