public CustomerContact Get(int id) { using (var db = DBConnection.GetConnection()) { return(CustomerContact.GetById <CustomerContact>(db, id)); } }