/// <summary> /// Development Deletion. /// If the development exists, it deletes the current development from /// the database using the development data access component. /// </summary> public void delete() { DevelopmentDAC developmentDAC = new DevelopmentDAC(); developmentDAC.delete(this); }
/// <summary> /// Development Update. /// Uses the development data access component to update the register /// of the database which holds the current development data with /// the actual values of the current development. /// </summary> public void update() { DevelopmentDAC developmentDAC = new DevelopmentDAC(); developmentDAC.update(this); }
// ///////////////////////////////////////////////////////////////////// // Methods ///////////////////////////////////////////////////////////// // ///////////////////////////////////////////////////////////////////// /// <summary> /// Development Creation. /// Uses the development data access component to insert the current /// development in the database. /// </summary> public void create() { DevelopmentDAC developmentDAC = new DevelopmentDAC(); developmentDAC.insert(this); }