public override void UpdateStatus()
        {
            Personnel_Setup_Property objPersonnelSetupPropertyNew = new Personnel_Setup_Property();

            objPersonnelSetupPropertyNew.ID        = base.Id;
            objPersonnelSetupPropertyNew.Status    = base.Status;
            objPersonnelSetupPropertyNew.TableName = objPersonnelSetupProperty.TableName;

            objPersonnelSetupDAL = new Personnel_Setup_DAL(objPersonnelSetupPropertyNew);
            objPersonnelSetupDAL.UpdateStatus();

            //Transaction_Master_Property objTransactionMasterPropertyNew = new Transaction_Master_Property();
            //objTransactionMasterPropertyNew.ID = base.Id;
            //objTransactionMasterPropertyNew.Status = base.Status;
            //objTransactionMasterPropertyNew.TableName = objTransactionMasterProperty.TableName;
            //objTransactionMasterPropertyNew.Operated_By = objTransactionMasterProperty.Operated_By;

            ////if (objTransactionMasterPropertyNew.Status != null)
            ////{
            //objTransactionMasterDAL = new Transaction_Master_DAL(objTransactionMasterPropertyNew);
            //objTransactionMasterDAL.UpdateStatus();
        }
 public Personnel_Setup_BLL(Personnel_Setup_Property objPersonnelSetup_Property)
 {
     objPersonnelSetupProperty = objPersonnelSetup_Property;
 }