ปรับapi กับโครงสร้างใหม่

This commit is contained in:
Kittapath 2024-05-27 09:09:39 +07:00
parent 7e1c4cb4d9
commit 54661ffbcb
37 changed files with 1542 additions and 233 deletions

View file

@ -0,0 +1,13 @@
using System.Data.Common;
namespace BMA.EHR.Recruit.Service.Extensions
{
public static class DataReaderExtension
{
public static bool IsDbNull(this DbDataReader dataReader, string columnName)
{
return dataReader[columnName] == DBNull.Value;
}
}
}