public StatisticServicesTest() { mapper = new MapperConfiguration(cfg => cfg.AddProfile <Mapper> ()).CreateMapper(); authService = new AuthService(); goodsService = new GoodsServices(); shopOrderService = new ShopOrderService(); typeOfGoodsService = new TypeOfGoodsService(); }
public TypeOfGoodsServiceTest() { mapper = new MapperConfiguration(cfg => cfg.AddProfile <Mapper> ()).CreateMapper(); service = new TypeOfGoodsService(); }
public GoodsTypeController(TypeOfGoodsService services) { this.services = services; }