Example #1
0
 public bool UpdateRetrieval([FromBody] Retrieval r1)
 {
     try
     {
         int       clerkid = (int)HttpContext.Session.GetInt32("Id");
         Retrieval r       = r1;
         r.ClerkId = clerkid;
         scservice.UpdateRetrieval(r);
         return(true);
     }
     catch (Exception m)
     {
         string msg = m.Message;
         throw new Exception(msg);
     }
 }