public ProductTypeGroupController(IProductTypeGroupService productTypeGroupService)
 {
     _productTypeGroupService = productTypeGroupService;
 }
 public ProductTypeGroupController(IUnitOfWork uow, IProductTypeGroupService ProductTypeGroupService, IUserService userService)
 {
     _uow = uow;
     _ProductTypeGroupService = ProductTypeGroupService;
 }