10 lines
328 B
C#
10 lines
328 B
C#
namespace TIAMWebApp.Shared.Application.Interfaces
|
|
{
|
|
public interface IWizardProcessor
|
|
{
|
|
public Task<TModelType?> ProcessWizardAsync<TModelType>(Type type, object data) where TModelType : class;
|
|
|
|
public Task<string> ValidateWizardStepAsync(Type type, string fieldName, object fieldValue);
|
|
}
|
|
}
|