Example #1
0
 public AppUserService(
     IUOW UOW,
     ICurrentContext CurrentContext,
     IAppUserValidator AppUserValidator,
     ILogging Logging,
     IConfiguration Configuration
     )
 {
     this.UOW              = UOW;
     this.Logging          = Logging;
     this.CurrentContext   = CurrentContext;
     this.AppUserValidator = AppUserValidator;
     this.Configuration    = Configuration;
 }
Example #2
0
 public AppUserService(
     IUOW UOW,
     ILogging Logging,
     ICurrentContext CurrentContext,
     IAppUserValidator AppUserValidator,
     ISexService SexService
     )
 {
     this.UOW              = UOW;
     this.Logging          = Logging;
     this.CurrentContext   = CurrentContext;
     this.AppUserValidator = AppUserValidator;
     this.SexService       = SexService;
 }