public DynamicEntityEntityAppServiceTests()
 {
     _dynamicEntityAppService = GetRequiredService <IDynamicEntityAppService>();
     _dynamicEntityRepository = GetRequiredService <IDynamicEntityRepository>();
 }
Пример #2
0
 public DynamicEntityController(IDynamicEntityAppService service)
 {
     _service = service;
 }
Пример #3
0
 public CreateModalModel(IDynamicEntityAppService service)
 {
     _service = service;
 }
Пример #4
0
 public EditModalModel(IDynamicEntityAppService service)
 {
     _service = service;
 }