public TradeCategoryRepositoryTests()
 {
     _tradeCategoryRepository = GetRequiredService <ITradeCategoryRepository>();
 }
 public TradeCategoryAppService(ITradeCategoryRepository tradeCategoryRepo)
 {
     _tradeCategoryRepo = tradeCategoryRepo;
 }