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