/// <summary> /// Constructor por defecto que inicializa el objeto con sus campos vacíos. /// </summary> public ENOptionalSubject() : base() { cad = new CADOptionalSubject(); idSubject = 0; }
/// <summary> /// Constructor sobrecargado que inicializa el objeto con los datos pasado por parámetro. /// </summary> /// <param name="idNewBook">Identificador de la clase ENBusiness padre del Distributor.</param> public ENOptionalSubject(int idSubject, int idCourse) : base() { cad = new CADOptionalSubject(); this.idSubject = idSubject; }
public override int Save() { if (id == 0) { this.idSubject = new CADSubject().Insert(base.ToDataRow); cad = new CADOptionalSubject(); return this.id = cad.Insert(ToDataRow); } else { cad.Update(ToDataRow); return 0; } }