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; }
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); }
public static void encolar_sended(EnqueueCommentBotReq item) { stored.StorageObject.Add(new EnqueueCommentBotReq_serializable(item)); stored.Save(); }