private void BindSystemStatus(DropDownList ddl) { Models.lookupAttributeDAL LookupAtrributes = new Models.lookupAttributeDAL(); string AttributeOptionFor = "ProductSupplierMapping"; ddl.DataSource = LookupAtrributes.GetAllAttributeAndValuesByFOR(AttributeOptionFor, "MappingStatus").MasterAttributeValues; ddl.DataTextField = "AttributeValue"; ddl.DataValueField = "MasterAttributeValue_Id"; ddl.DataBind(); LookupAtrributes = null; }
private void BindSystemAttributeTypes(DropDownList ddl) { Models.lookupAttributeDAL LookupAtrributes = new Models.lookupAttributeDAL(); string AttributeOptionFor = "SupplierInfo"; ddl.DataSource = LookupAtrributes.GetAllAttributeAndValuesByFOR(AttributeOptionFor, "GenericAttributeType").MasterAttributeValues; ddl.DataTextField = "AttributeValue"; ddl.DataValueField = "MasterAttributeValue_Id"; ddl.DataBind(); LookupAtrributes = null; }