using e_suite.API.Common; using e_suite.API.Common.models; using e_suite.Database.Core.Models; using e_suite.Database.Core.Tables.CustomFields; using e_suite.Database.Core.Tables.Domain; using e_suite.Database.Core.Tables.Forms; using e_suite.Database.Core.Tables.Glossaries; using eSuite.Core.Miscellaneous; namespace e_suite.Modules.FormsManagerUnitTests; public class FakeCustomFieldHelper : ICustomFieldHelper { public Task TranslateToCustomFieldDefinitionAsync(CustomField customField, CancellationToken cancellationToken) { throw new NotImplementedException(); } public Task GetFormTemplateByGeneralRefIdAsync(IGeneralIdRef idRef, CancellationToken cancellationToken) { throw new NotImplementedException(); } public Task GetGlossaryByGeneralRefIdAsync(IGeneralIdRef idRef, CancellationToken cancellationToken) { throw new NotImplementedException(); } public Task> CustomFieldValuesList(IEnumerable enumerableCustomFieldValues, CancellationToken cancellationToken) { return Task.FromResult(new List()); } public Task GetDomainByGeneralRefIdAsync(IGeneralIdRef idRef, CancellationToken cancellationToken) { throw new NotImplementedException(); } }