16 lines
445 B
C#
16 lines
445 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
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);
|
|
}
|
|
}
|