using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Net.Http; using System.Web.Http; using Warehouse.DAL.Report; namespace Warehouse.WebApi { public class CellBatchRateController : ApiController { CellBatchRateDal DT = new CellBatchRateDal(); [Route("api/CellBatchRate/CellBatchRate")] [HttpPost] public IHttpActionResult Repair(dynamic para) { string sale_order = para.sales; string workorder = para.wo; string area_code = para.workshop; var res = DT.CellBatchRate(sale_order, workorder,area_code); return Json(res); } } }