Beispiel #1
0
 public bool UpdateStockTransferReq(ITN_OPRODTO str)
 {
     try
     {
         var result = _itnRepository.UpdateStockTransferRequest(str.ITN_OPRO);
         return(result);
     }
     catch (Exception ex)
     {
         throw new Exception("Error while update data : " + ex.StackTrace);
     }
 }
        public IActionResult Index()
        {
            ITN_OPRODTO oproDto = _oproService.GetAllStockTransferReq();

            return(View(oproDto));
        }