我将在我的网站上有一份登记表,其中将首先显示董事会规则/法律。一旦接受,它将显示主登记表。使用ViewModel如下所示:
public class MyViewModel
{
public int Readrules { get; set; }
public int Coppa { get; set; }
}
public ActionResult Register(MyViewModel model)
{
... at this stage model.Readrules and model.Coppa will contain the values passed
我想注册一些可以解析到它们的相关实现类的通用接口。我正在使用asp.net核心的内置依赖项asp.net
假设我的界面是这样的:
public interface ICommandHandler<in TCommand> where TCommand :Command
{
void Execute(TCommand command);
}
我的班级是这样的:
public class AddItem1CommandHandler : ICommandHandler<AddItem1Command>
public class AddItem2CommandHan