Files
NKC/NKC_WF/Controllers/getMUSheetRevController.cs
Samuele E. Locatelli 3031566e5d More cleanup on code
2020-07-15 18:57:57 +02:00

22 lines
483 B
C#

using AppData;
using System.Web.Http;
namespace NKC_WF.Controllers
{
public class getMUSheetRevController : ApiController
{
// GET api/getMUSheetRevController
public int Get()
{
int answ = ComLib.getSheetRevByBunk(0);
return answ;
}
// GET api/getMUSheetRevController/5
public int Get(int id)
{
int answ = ComLib.getSheetRevByBunk(id);
return answ;
}
}
}