Example #1
0
    public void deleteAccount()
    {
        int id = int.Parse(txtEmpCode.Text);

        CSMSService.CSMSWebservice CSMSService = new CSMSService.CSMSWebservice();
        CSMSService.AdminDeleteAccount(id);
    }
Example #2
0
 public void DeleteAccount()
 {
     CSMSService.CSMSWebservice CSMSService = new CSMSService.CSMSWebservice();
     CSMSService.AdminDeleteAccount(int.Parse(txtEmpID.Text));
 }
Example #3
0
 public void deleteAccount()
 {
     int id = int.Parse(txtEmpCode.Text);
     CSMSService.CSMSWebservice CSMSService = new CSMSService.CSMSWebservice();
     CSMSService.AdminDeleteAccount(id);
 }
Example #4
0
 public void DeleteAccount()
 {
     CSMSService.CSMSWebservice CSMSService = new CSMSService.CSMSWebservice();
     CSMSService.AdminDeleteAccount(int.Parse(txtEmpID.Text));
 }