예제 #1
0
        public ResultResponse insertUpdatePost(VD_POST _post)
        {
            string _Msg    = string.Empty;
            long   _Result = 0;

            _rr       = new ResultResponse();
            _DBAccess = new DBController();
            _DBAccess.InsertPost("WEB_VD_INSERT_POST", _post, ref _Msg, ref _Result);
            _rr.Msg    = _Msg;
            _rr.Result = _Result;

            return(_rr);
        }