コード例 #1
0
 /// <summary>
 /// Gets the total number of records in the Course table based on search parameters
 /// </summary>
 public static int GetRecordCountDynamicWhere(int?courseId, string courseName, DateTime?startDate, DateTime?endDate, decimal?fees)
 {
     return(CourseDataLayer.GetRecordCountDynamicWhere(courseId, courseName, startDate, endDate, fees));
 }