public ListDTO CreateList(ListDTO list) { var result = db_.CreateList(list); if (result != null) { return(result); } else { throw new Exception(); } }