public ProductTypeService(
     IUOW UOW,
     IProductTypeValidator ProductTypeValidator
     )
 {
     this.UOW = UOW;
     this.ProductTypeValidator = ProductTypeValidator;
 }
Exemplo n.º 2
0
 public ProductTypeService(
     IUOW UOW,
     ILogging Logging,
     ICurrentContext CurrentContext,
     IProductTypeValidator ProductTypeValidator
     )
 {
     this.UOW                  = UOW;
     this.Logging              = Logging;
     this.CurrentContext       = CurrentContext;
     this.ProductTypeValidator = ProductTypeValidator;
 }