This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public const string strEngineeringApprovalBreadCrumdText = "Engineering Approval"; | |
public string EngineeringApprovalBreadCrumbText | |
{ | |
get | |
{ return strEngineeringApprovalBreadCrumdText; } | |
} | |
public string BreadCrumbText | |
{ | |
set | |
{ | |
m_BreadCrumbText = value; | |
} | |
} | |
/// | |
/// Sets and gets the BreadCrumb text | |
/// | |
public string BreadCrumb | |
{ | |
get | |
{ | |
return m_BreadCrumbText; | |
} | |
} | |
objCommonMethods.BreadCrumbText = objConstants.EngineeringApprovalBreadCrumbText; | |
lblBreadCrumbText.Text = objCommonMethods.BreadCrumb; |