public DynamicEntityEntityAppServiceTests()
 {
     _dynamicEntityAppService = GetRequiredService <IDynamicEntityAppService>();
     _dynamicEntityRepository = GetRequiredService <IDynamicEntityRepository>();
 }
示例#2
0
 public DynamicEntityController(IDynamicEntityAppService service)
 {
     _service = service;
 }
示例#3
0
 public CreateModalModel(IDynamicEntityAppService service)
 {
     _service = service;
 }
 public EditModalModel(IDynamicEntityAppService service)
 {
     _service = service;
 }