You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
842 B
28 lines
842 B
2 years ago
|
using Microsoft.AspNetCore.Mvc;
|
||
|
using Microsoft.Extensions.Logging;
|
||
|
using WTA.Application.Identity.Entities.SystemManagement;
|
||
|
using WTA.Shared.Application;
|
||
|
using WTA.Shared.Controllers;
|
||
|
using WTA.Shared.Data;
|
||
|
|
||
|
namespace WTA.Application.Identity.Controllers;
|
||
|
|
||
|
public class TB_PRICE_BJController : GenericController<TB_PRICE_BJ, TB_PRICE_BJ, TB_PRICE_BJ, TB_PRICE_BJ, TB_PRICE_BJ, TB_PRICE_BJ>
|
||
|
{
|
||
|
public TB_PRICE_BJController(ILogger<TB_PRICE_BJ> logger, IRepository<TB_PRICE_BJ> repository) : base(logger, repository)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
[NonAction]
|
||
|
public override IActionResult Create([FromBody] TB_PRICE_BJ model)
|
||
|
{
|
||
|
return base.Create(model);
|
||
|
}
|
||
|
|
||
|
//[NonAction]
|
||
|
//public override IActionResult Index([FromBody] PaginationModel<TB_PRICE_BJ, TB_PRICE_BJ> model)
|
||
|
//{
|
||
|
// return base.Index(model);
|
||
|
//}
|
||
|
}
|