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.
20 lines
672 B
20 lines
672 B
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 BBAC_SA_DETAILController : GenericController<BBAC_SA_DETAIL, BBAC_SA_DETAIL, BBAC_SA_DETAIL, BBAC_SA_DETAIL, BBAC_SA_DETAIL, BBAC_SA_DETAIL>
|
|
{
|
|
public BBAC_SA_DETAILController(ILogger<BBAC_SA_DETAIL> logger, IRepository<BBAC_SA_DETAIL> repository) : base(logger, repository)
|
|
{
|
|
}
|
|
|
|
[NonAction]
|
|
public override IActionResult Create([FromBody] BBAC_SA_DETAIL model)
|
|
{
|
|
return base.Create(model);
|
|
}
|
|
}
|
|
|