diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/VmiService.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/VmiService.cs index b56f27a2..1e5ac4e8 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/VmiService.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/VmiService.cs @@ -1,3 +1,4 @@ +using System; using System.Linq; using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Mvc; @@ -22,21 +23,25 @@ public interface IVmiService : IApplicationService, ITransientDependency, IJobSe [Route("api/settleaccount/[controller]/[action]")] public class VmiService : IVmiService { + [NonAction] public void Invoke() { - throw new System.NotImplementedException(); + Console.WriteLine($"{nameof(VmiService)}:{DateTime.Now}"); } + [NonAction] public void In() { throw new System.NotImplementedException(); } + [NonAction] public void Out() { throw new System.NotImplementedException(); } + [HttpPost] public IQueryable Query() { throw new System.NotImplementedException();