I have struck with some simple if else checking
var IsCompanyContacttitleUpdate = false; var ContactStatus = -1; if ((IsCompanyContacttitleUpdate == false) &am
the problem is (ContactStatus == 2 || 3 || 4)
the correct way should (ContactStatus == 2 || ContactStatus == 3 || ContactStatus == 4)