public BrandService(
     IUOW UOW,
     IBrandValidator BrandValidator
     )
 {
     this.UOW            = UOW;
     this.BrandValidator = BrandValidator;
 }
示例#2
0
 public BrandService(
     IUOW UOW,
     ILogging Logging,
     ICurrentContext CurrentContext,
     IBrandValidator BrandValidator
     )
 {
     this.UOW            = UOW;
     this.Logging        = Logging;
     this.CurrentContext = CurrentContext;
     this.BrandValidator = BrandValidator;
 }