예제 #1
0
 private void InsertEmployeeType(tmdlemployeetype _employeetype)
 {
     wsMDL.IwsMDLClient client = new wsMDL.IwsMDLClient();
     try
     {
         client.DoInsertEmployeeType(baseForm.CurrentContextInfo, _employeetype);
     }
     catch (Exception ex)
     {
         throw ex;
     }
     finally
     {
         baseForm.CloseWCF(client);
     }
 }