You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
734 B
27 lines
734 B
2 years ago
|
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 FragmentationRateApiController : ApiController
|
||
|
{
|
||
|
FragmentationRateDal DT = new FragmentationRateDal();
|
||
|
|
||
|
[Route("api/FragmentationRate/FragmentationRate")]
|
||
|
[HttpPost]
|
||
|
public IHttpActionResult Fragment(dynamic para)
|
||
|
{
|
||
|
string machine = para.machine;
|
||
|
string workshop = para.workshop;
|
||
|
string bt = para.bt;
|
||
|
string et = para.et;
|
||
|
var res = DT.Fragmentation(machine,workshop,bt,et);
|
||
|
return Json(res);
|
||
|
}
|
||
|
}
|
||
|
}
|