YNICTE/BO/Controllers/BatchController.cs

18 lines
364 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace NP.BO.Controllers
{
public class BatchController : NP.Base.BaseController
{
public ActionResult lectinninmove(String batchKey, bool isTest = true)
{
return Content("ok");
}
}
}