| | |
| | | { |
| | | [Route("api/[controller]")] |
| | | [ApiController] |
| | | public class MaintenanceTeamController : ApiBaseController<IMaintenanceService, Dt_MaintenanceTeam> |
| | | public class MaintenanceTeamController : ApiBaseController<IMaintenanceTeamService, Dt_MaintenanceTeam> |
| | | { |
| | | public MaintenanceTeamController(IMaintenanceService service) : base(service) |
| | | public MaintenanceTeamController(IMaintenanceTeamService service) : base(service) |
| | | { |
| | | |
| | | |
| | |
| | | [HttpPost, Route("MaintenanceSettingRecord"), AllowAnonymous] |
| | | public WebResponseContent MaintenanceSettingRecord([FromBody] PaginationDTO pagination ) |
| | | { |
| | | return Service.MaintenanceOperationRecord(pagination); |
| | | return Service.MaintenanceSettingRecord(pagination); |
| | | |
| | | } |
| | | } |