ProcReasonData = conn.Query<타입>(sql.ToString(), new { 파라미터 }, null, true, TimeOut).FirstOrDefault() ?? new 타입();
또는
ProcReasonData = conn.Query(sql.ToString(), new { 파라미터 }, null, true, TimeOut).FirstOrDefault();
ProcReasonData ??== new ODA_T_ProcReason;
첫화면에 프로파티null오류날때, 테이블에서 가져온거 null이여서 못쓸때 새로 new로 비워주면된다.