public DynamicEntityEntityAppServiceTests()
 {
     _dynamicEntityAppService = GetRequiredService <IDynamicEntityAppService>();
     _dynamicEntityRepository = GetRequiredService <IDynamicEntityRepository>();
 }
Esempio n. 2
0
 public DynamicEntityController(IDynamicEntityAppService service)
 {
     _service = service;
 }
Esempio n. 3
0
 public CreateModalModel(IDynamicEntityAppService service)
 {
     _service = service;
 }
 public EditModalModel(IDynamicEntityAppService service)
 {
     _service = service;
 }