Exemplo n.º 1
0
 internal void SetDAL(Indico.DAL.PatternCoreCategoriesView obj, IndicoEntities context)
 {
     // set the Indico.DAL.PatternCoreCategoriesView properties
     obj.ID           = Convert.ToInt32(ID);
     obj.CoreCategory = Convert.ToInt32(CoreCategory);
     obj.Name         = Name;
 }
Exemplo n.º 2
0
 internal void SetBO(Indico.DAL.PatternCoreCategoriesView obj)
 {
     // set the Indico.BusinessObjects.PatternCoreCategoriesViewBO properties
     this.ID           = obj.ID;
     this.CoreCategory = obj.CoreCategory;
     this.Name         = obj.Name;
 }
Exemplo n.º 3
0
 /// <summary>
 /// Creates an instance of the PatternCoreCategoriesViewBO class using the supplied Indico.DAL.PatternCoreCategoriesView.
 /// </summary>
 /// <param name="obj">a Indico.DAL.PatternCoreCategoriesView whose properties will be used to initialise the PatternCoreCategoriesViewBO</param>
 internal PatternCoreCategoriesViewBO(Indico.DAL.PatternCoreCategoriesView obj)
 {
     // set the properties from the Indico.DAL.PatternCoreCategoriesView
     this.ID           = obj.ID;
     this.CoreCategory = obj.CoreCategory;
     this.Name         = obj.Name;
 }