/// <summary> /// Insert an entry to LoginTrack table when a user tries to login. /// </summary> public static void AddLoginTrack(string loginId, string password, bool isSuccess, string ipAddress, string browser, int createdBy) { UserDao.AddLoginTrack(loginId, password, isSuccess, ipAddress, browser, createdBy); }