public TradeCategoryAppServiceTests()
 {
     _tradeCategoryAppService = GetRequiredService <ITradeCategoryAppService>();
 }
 public TradeCategoryController(ITradeCategoryAppService service)
 {
     _service = service;
 }