Files
NKC/NKC_WF/Controllers/getMUSheetRevController.cs
T
2020-02-15 17:55:49 +01:00

24 lines
452 B
C#

using AppData;
using SteamWare;
using System;
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;
}
}
}