} //End public EmployeeuserCRUD() //Constructor 2 public EmployeeuserCRUD(DBMAINContext poDB) { this.db = poDB; this.oCRUD = new EmployeeCRUD(this.db); this.oCRUD_user = new UserCRUD(this.db); } //End public EmployeeuserCRUD()
} //End public EmployeeuserCRUD() //Constructor 3 public EmployeeuserCRUD(DBMAINContext poDB, EmployeeCRUD poCRUD, UserCRUD poCRUD_user) { this.db = poDB; this.oCRUD = poCRUD; this.oCRUD_user = poCRUD_user; } //End public EmployeeuserCRUD()
//Constructor 1 public EmployeeuserCRUD() { this.db = new DBMAINContext(); this.oCRUD = new EmployeeCRUD(this.db); this.oCRUD_user = new UserCRUD(this.db); } //End public EmployeeuserCRUD()