예제 #1
0
 public async Task <IActionResult> UpdateStorageType(StorageTypeDto cartonType)
 {
     return(Ok(await _storageTypeRepository.EditItem(cartonType)));
 }
예제 #2
0
 public async Task <IActionResult> AddStorageType(StorageTypeDto cartonType)
 {
     return(Ok(await _storageTypeRepository.AddItem(cartonType)));
 }