Esempio n. 1
0
 public bool UpdateRequisitionCollectionTime([FromBody] Requisition r1)
 {
     try
     {
         int clerkid = (int)HttpContext.Session.GetInt32("Id");
         r1.ProcessedByClerkId = clerkid;
         scservice.UpdateRequisitionCollectionTime(r1);
         return(true);
     }
     catch
     {
         throw new Exception("Error updating collection time. Please check entry again");
     }
 }