Пример #1
0
        public JsonResult viewMMRAsset(string prd)
        {
            string bln  = prd.Substring(0, 2);
            string thn  = prd.Substring(3, 4);
            int    iBln = Convert.ToInt32(bln);
            int    iThn = Convert.ToInt32(thn);

            WipRepository FixedAsset = new WipRepository();

            return(Json(FixedAsset.viewMMRAsset(iThn, iBln), JsonRequestBehavior.AllowGet));
        }