IInventoryController.cs
1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
using System;
using System.Collections.Generic;
using Infrastructure;
using Microsoft.AspNetCore.Mvc;
using WebApp;
using WebRepository;
namespace WebMvc.Areas.Api.Controllers
{
/// <summary>
/// 库存查询接口
/// </summary>
[Route("api/[controller]")]
[ApiController]
public class IInventoryController : ControllerBase
{
private readonly IInventoryApp _app;
/// <summary>
/// 控制器构造函数
/// </summary>
/// <param name="unitWork">注入工作单元</param>
/// <param name="auth">注入授权信息</param>
/// <param name="context">EF上下文</param>
public IInventoryController(IUnitWork unitWork, IAuth auth, BaseDBContext context)
{
_app = new IInventoryApp(unitWork, auth, context);
}
/// <summary>
/// 库存查询接口
/// </summary>
/// <param name="inventoryModel">查询条件</param>
/// <returns></returns>
[HttpPost("GetCurrentStock")]
[ServiceFilter(typeof(InterfaceLogFilter))]
public string GetCurrentStock([FromBody]InventoryModel inventoryModel)
{
return JsonHelper.Instance.Serialize(_app.GetCurrentStock(inventoryModel));
}
}
}