public GoodsItemService(GoodsRepository repository, AreaRepository areaRepository, StateChangeCommandFactory factory)
 {
     _repository     = repository;
     _areaRepository = areaRepository;
     _factory        = factory;
 }
 public GoodsItemFilter(GoodsRepository repository)
 {
     _repository = repository;
 }