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