* Further improvements
This commit is contained in:
@@ -41,6 +41,13 @@ public class WzRowMeyleController(IWzRowMeyleService service, IMaterialTransacti
|
||||
return Ok(materialTransaction);
|
||||
}
|
||||
|
||||
[HttpGet("transactions-with-part-number")]
|
||||
public async Task<ActionResult<MaterialTransactionDto>> GetTransactionsWithPartNumber()
|
||||
{
|
||||
IEnumerable<MaterialTransactionDto> materialTransactions = await materialTransactionService.GetWithPartNumber();
|
||||
return Ok(materialTransactions);
|
||||
}
|
||||
|
||||
[HttpPut]
|
||||
public async Task<ActionResult> UpdateRows([FromBody] IEnumerable<WzRowMeyleDto> rows)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user