コード例 #1
0
        public virtual ActionResult Update(PAccount entity)
        {
            entity.LastUpdatedTime = DateTime.Now;
            OperationResult or = PAccountService.Update(entity);

            return(this.JsonFormat(or));
        }
コード例 #2
0
        public virtual ActionResult Add(PAccount entity)
        {
            OperationResult or = PAccountService.Insert(entity);

            return(this.JsonFormat(or));
        }
コード例 #3
0
        static void Main(string[] args)
        {
            PAccount pAccount = new PAccount();

            pAccount.Execute();
        }