internal void SetDAL(Indico.DAL.LastRecordOfVisullayoutPrefixCS obj, IndicoEntities context)
 {
     // set the Indico.DAL.LastRecordOfVisullayoutPrefixCS properties
     obj.ID         = Convert.ToInt32(ID);
     obj.NamePrefix = NamePrefix;
     obj.NameSuffix = Convert.ToInt32(NameSuffix);
 }
 internal void SetBO(Indico.DAL.LastRecordOfVisullayoutPrefixCS obj)
 {
     // set the Indico.BusinessObjects.LastRecordOfVisullayoutPrefixCSBO properties
     this.ID         = obj.ID;
     this.NamePrefix = obj.NamePrefix;
     this.NameSuffix = obj.NameSuffix;
 }
 /// <summary>
 /// Creates an instance of the LastRecordOfVisullayoutPrefixCSBO class using the supplied Indico.DAL.LastRecordOfVisullayoutPrefixCS.
 /// </summary>
 /// <param name="obj">a Indico.DAL.LastRecordOfVisullayoutPrefixCS whose properties will be used to initialise the LastRecordOfVisullayoutPrefixCSBO</param>
 internal LastRecordOfVisullayoutPrefixCSBO(Indico.DAL.LastRecordOfVisullayoutPrefixCS obj)
 {
     // set the properties from the Indico.DAL.LastRecordOfVisullayoutPrefixCS
     this.ID         = obj.ID;
     this.NamePrefix = obj.NamePrefix;
     this.NameSuffix = obj.NameSuffix;
 }