Exemplo n.º 1
0
        public JsonResult GetLotProdMapping()
        {
            var model    = ReqRpt211TableDataBuilder.GetLotAndProdMappingList();
            var response = new { success = true, prodLotMap = model };

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

            return(Json(response));
        }