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