Beispiel #1
0
        //  合同信息[from StoreContractInfo]
        public ActionResult StoreContractInfoByIDQuery(Guid _ID)
        {
            StoreContractInfo mStoreContractInfo = new StoreContractInfo();

            mStoreContractInfo = mStoreContractInfo.GetStoreContractInfo(_ID);
            string result = JsonConvert.SerializeObject(mStoreContractInfo);

            return(Content(result));
        }
Beispiel #2
0
        /////////////////////////////////////////////////////////////////////////////////

        #region //  合同信息 Store ContractInfo

        //  租赁历史[from StoreContractInfo]
        public ActionResult StoreContractInfoListQuery(string _USCode)
        {
            var lsStoreContractInfo = new List <StoreContractInfo>();
            var bll = new StoreContractInfo();

            lsStoreContractInfo = bll.GetStoreContractInfo(_USCode);

            string result = JsonConvert.SerializeObject(lsStoreContractInfo);

            return(Content(result));
        }