using Microsoft.AspNetCore.Mvc; using WIDESEA_Core.Controllers.Basic; using WIDESEA_Entity.AttributeManager; using WIDESEA_Services.IServices; namespace WIDESEA_Services.Controllers { [Route("api/dt_materielinfo")] [PermissionTable(Name = "dt_materielinfo")] public partial class dt_materielinfoController : ApiBaseController { private Idt_materielinfoService _service { get; set; } public dt_materielinfoController(Idt_materielinfoService service) : base(service) { _service = service; } } }