public bool AddAlbum(int owner_id, string name) { try { // Album id doesn't matter since it is not considered in the AddAlbum function in DBF. Album al = new Album(1, owner_id, name); return(DBF.AddAlbum(al)); } catch (Exception e) { throw e; } }