Esempio n. 1
0
 public ProvinceService(
     IUOW UOW,
     IProvinceValidator ProvinceValidator
     )
 {
     this.UOW = UOW;
     this.ProvinceValidator = ProvinceValidator;
 }
Esempio n. 2
0
 public ProvinceService(
     IUOW UOW,
     ILogging Logging,
     ICurrentContext CurrentContext,
     IProvinceValidator ProvinceValidator
     )
 {
     this.UOW               = UOW;
     this.Logging           = Logging;
     this.CurrentContext    = CurrentContext;
     this.ProvinceValidator = ProvinceValidator;
 }