/// <summary> /// Get account matching list /// </summary> /// <param name="ImportFileId"></param> /// <returns></returns> public static List<CTFuzzyLookupAccount> GetFuzzyLookupAccountList(int ImportFileId) { BrightPlatformEntities objDbModel = new BrightPlatformEntities(UserSession.EntityConnection) { CommandTimeout = 0 }; return objDbModel.FIGetFuzzyLookupAccounts(ImportFileId).ToList(); }