Example #1
0
 public IActionResult AddItems(Products obj)
 {
     try
     {
         _repo.AddItems(obj);
         return(Ok());
     }
     catch (Exception e)
     {
         return(NotFound(e.InnerException.Message));
     }
 }