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.
34 lines
977 B
34 lines
977 B
2 years ago
|
using Microsoft.AspNetCore.Http;
|
||
|
using Microsoft.AspNetCore.Mvc;
|
||
|
using Microsoft.Extensions.Logging;
|
||
|
using WTA.Application.Identity.Entities.SystemManagement;
|
||
|
using WTA.Shared.Controllers;
|
||
|
using WTA.Shared.Data;
|
||
|
|
||
|
namespace WTA.Application.Identity.Controllers;
|
||
|
|
||
|
public class HBPO_SE_DETAILController : GenericController<HBPO_SE_DETAIL, HBPO_SE_DETAIL, HBPO_SE_DETAIL, HBPO_SE_DETAIL, HBPO_SE_DETAIL, HBPO_SE_DETAIL>
|
||
|
{
|
||
|
public HBPO_SE_DETAILController(ILogger<HBPO_SE_DETAIL> logger, IRepository<HBPO_SE_DETAIL> repository) : base(logger, repository)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
[NonAction]
|
||
|
public override IActionResult Import(IFormFile importexcelfile)
|
||
|
{
|
||
|
return base.Import(importexcelfile);
|
||
|
}
|
||
|
|
||
|
[NonAction]
|
||
|
public override IActionResult Delete([FromBody] Guid[] guids)
|
||
|
{
|
||
|
return base.Delete(guids);
|
||
|
}
|
||
|
|
||
|
[NonAction]
|
||
|
public override IActionResult Create([FromBody] HBPO_SE_DETAIL model)
|
||
|
{
|
||
|
return base.Create(model);
|
||
|
}
|
||
|
}
|