Esempio n. 1
0
 public AutherService(ISRMContext _Context, ILDAPService _LDAPService, IRunningNoService _runningNoService, IEncryptionService _encryptionService)
 {
     Context           = _Context;
     LDAPService       = _LDAPService;
     RunningNoService  = _runningNoService;
     EncryptionService = _encryptionService;
 }
 public EmployeeSearchController(ILDAPService ldapService)
 {
     _ldapService = ldapService;
 }
Esempio n. 3
0
 public LDAPController(ILDAPService ldapService)
 {
     _ldapService = ldapService;
 }
 public SafetyIncidentController(ILDAPService ldapService, IEmailService emailService, IHierarchyService hierarchyService)
 {
     _ldapService      = ldapService;
     _emailService     = emailService;
     _hierarchyService = hierarchyService;
 }
Esempio n. 5
0
 public SharedController(ILDAPService ldapService)
 {
     _ldapService = ldapService;
 }
Esempio n. 6
0
 public ActiveDirectoryController(ILDAPService service)
 {
     _LDAPService = service;
 }
Esempio n. 7
0
 public HoursWorkedController(ILDAPService ldapService, IHierarchyService hierarchyService)
 {
     _hierarchyService = hierarchyService;
     _ldapService = ldapService;
 }
Esempio n. 8
0
 public SharedController(ILDAPService ldapService)
 {
     _ldapService = ldapService;
 }
 public EmployeeSearchController(ILDAPService ldapService)
 {
     _ldapService = ldapService;
 }
Esempio n. 10
0
 public SessionManagerService(ISessionStorageService sessionStorageService, ILDAPService ldapService, ICryptService cryptService)
 {
     _sessionStorageService = sessionStorageService;
     _ldapService           = ldapService;
     _cryptService          = cryptService;
 }
 public LoginController(IJwtSerivce jwtFactory, ILDAPService ladpUtility)
 {
     _jwtFactory  = jwtFactory;
     _ladpUtility = ladpUtility;
 }
Esempio n. 12
0
 /// <summary>
 /// API de autenticacion ldap
 /// </summary>
 public ActiveDirectoryController()
 {
     _LDAPService = LDAPService.CreateInstance();
 }
Esempio n. 13
0
 public LDAPController(ILDAPService ldapService)
 {
     _ldapService = ldapService;
 }
Esempio n. 14
0
 public MeucciController(IMeucciService meucciService, ILDAPService lDAPService)
 {
     this.meucciService = meucciService;
     this.lDAPService   = lDAPService;
 }
Esempio n. 15
0
 public HoursWorkedController(ILDAPService ldapService, IHierarchyService hierarchyService)
 {
     _hierarchyService = hierarchyService;
     _ldapService      = ldapService;
 }
Esempio n. 16
0
 public SafetyIncidentController(ILDAPService ldapService, IEmailService emailService, IHierarchyService hierarchyService)
 {
     _ldapService = ldapService;
     _emailService = emailService;
     _hierarchyService = hierarchyService;
 }