18 lines
364 B
C#
18 lines
364 B
C#
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");
|
|
}
|
|
|
|
}
|
|
} |