123456789101112131415161718 |
- using System;
- using System.Linq;
-
- namespace TestUtils.DataAccess
- {
- public partial class LuUtilsDbContext
- {
- public static string unaccent(string str)
- {
- throw new NotImplementedException();
- }
-
- public static bool lu_texts_match(string query, string data)
- {
- throw new NotImplementedException();
- }
- }
- }
|