Exemple #1
0
        public CustomAuthenticationHandler(
            IOptionsMonitor <AuthenticationSchemeOptions> options,
            ILoggerFactory logger,
            UrlEncoder encoder,
            ISystemClock clock,

            IUserService userService,
            IFamilyTreeService familyTreeService,
            IAutoMappingService mapper)
            : base(options, logger, encoder, clock)
        {
            _userService       = userService;
            _familytreeService = familyTreeService;
            _mapper            = mapper;
        }
Exemple #2
0
 public ConsoleAPI(IFamilyTreeService familyTreeService)
 {
     FamilyTreeService = familyTreeService;
 }
 public FamilyTreesController(IFamilyTreeService familyTreeService, IMemoryCache cache)
 {
     this.familyTreeService = familyTreeService;
     this.cache             = cache;
 }
Exemple #4
0
 public DeletePersonCommandHandler(IApplicationDbContext context,
                                   IFamilyTreeService familyTreeService)
 {
     _context           = context;
     _familyTreeService = familyTreeService;
 }
 public FamilyTreeController(IFamilyTreeService familyTreeService)
 {
     _familyTreeService = familyTreeService;
 }
 public FamilyTreeController(IFamilyTreeService service, IAutoMappingService mapper)
 {
     _service = service;
     _mapper  = mapper;
 }
Exemple #7
0
 public GetBloodTreeQueryHandler(IFamilyTreeService service)
 {
     _service = service;
 }
Exemple #8
0
 public GetRelationsByPeopleIdsQueryHandler(IFamilyTreeService service)
 {
     _service = service;
 }