Beispiel #1
0
 public UserService(IFlytDexDbContext flytDexContext, IMapper mapper, IAuthorizationService authorizationService, IAuthorizationRoleService applicationRoleService, IErrorService errorService)
 {
     this.flytDexContext         = flytDexContext;
     this.mapper                 = mapper;
     this.authorizationService   = authorizationService;
     this.applicationRoleService = applicationRoleService;
     this.errorService           = errorService;
 }
Beispiel #2
0
 public PeriodService(IFlytDexDbContext flytDexContext, IMapper mapper, IErrorService errorService)
 {
     this.flytDexContext = flytDexContext;
     this.mapper         = mapper;
     this.errorService   = errorService;
 }