示例#1
0
 public RestoreService(IAuthenticatorService authenticatorService, ICategoryService categoryService,
                       IAuthenticatorCategoryService authenticatorCategoryService,
                       ICustomIconService customIconService)
 {
     _authenticatorService         = authenticatorService;
     _categoryService              = categoryService;
     _authenticatorCategoryService = authenticatorCategoryService;
     _customIconService            = customIconService;
 }
 public AuthenticatorService(IAuthenticatorRepository authenticatorRepository,
                             IAuthenticatorCategoryRepository authenticatorCategoryRepository,
                             IIconResolver iconResolver, ICustomIconService customIconService,
                             ICustomIconRepository customIconRepository)
 {
     _authenticatorRepository         = authenticatorRepository;
     _authenticatorCategoryRepository = authenticatorCategoryRepository;
     _iconResolver         = iconResolver;
     _customIconService    = customIconService;
     _customIconRepository = customIconRepository;
 }