public OrderService(IUnitOfWork context)
 {
     UnitOfWork  = context;
     OrderMapper = new OrderMapper();
     GoodsMapper = new GoodsMapper();
 }
 public GoodsService(IUnitOfWork context)
 {
     Context = context;
     Mapper  = new GoodsMapper();
 }