public void Insert(T obj) { using (var conn = new SqlConnectionHelper(ConnectionsStringHelper.DapperConnection)) { conn.Insert(obj); } }