예제 #1
0
 public bool Post([FromBody] ReleaseManagementModel[] value)
 {
     try
     {
         if (bl.InsertEmpDetails(value))
         {
             return(true);
         }
         else
         {
             return(false);
         }
     }
     catch (Exception e)
     {
         return(false);
     }
 }