public bool ReRecoderre(string ApiEchoToken, string ApiCorrelationID, string TimeSpamp, string ApiReCon, string ApiFrom, string Apiusername, string LoginTime)
        {
            bool rebl = false;

            this._1context();
            try
            {
                bool      isNew      = true;
                ReRecoder ReRecoderm = isNew ? new ReRecoder()
                {
                } : _context.Set <ReRecoder>().SingleOrDefault();
                ReRecoderm.ApiEchoToken     = ApiEchoToken;
                ReRecoderm.ApiCorrelationID = ApiCorrelationID;
                ReRecoderm.ApiFrom          = ApiFrom;
                ReRecoderm.ApiReCon         = ApiReCon;
                ReRecoderm.TimeSpamp        = TimeSpamp;

                ReRecoderm.CreatDate    = DateTime.Now;
                ReRecoderm.CreatUser    = Apiusername;
                ReRecoderm.ModifiedDate = ReRecoderm.CreatDate;
                ReRecoderm.ModifiedUser = Apiusername;
                ReRecoderm.IsDel        = 0;
                ReRecoderm.IsLock       = 0;

                if (isNew)
                {
                    _context.Add(ReRecoderm);
                }
                _context.SaveChanges();
                rebl = true;
            }
            catch (Exception ex)
            {
                throw ex;
                //string exst = ex.ToString();
            }
            finally
            {
            }
            return(rebl);
        }