예제 #1
0
 private void InsertShift(tmdlshift _shift)
 {
     wsMDL.IwsMDLClient client = new wsMDL.IwsMDLClient();
     try
     {
         client.DoInsertShift(baseForm.CurrentContextInfo, _shift);
     }
     catch (Exception ex)
     {
         throw ex;
     }
     finally
     {
         baseForm.CloseWCF(client);
     }
 }