예제 #1
0
        public JsonResult GetLotProdMapping()
        {
            var model    = ReqRpt211TableDataBuilder.GetLotAndProdMappingList();
            var response = new { success = true, prodLotMap = model };

            return(Json(response));
        }
예제 #2
0
        public JsonResult GetTableData(string lot)
        {
            var model    = ReqRpt211TableDataBuilder.GetRowEntities(lot);
            var response = new { success = true, tableData = model };

            return(Json(response));
        }