Example #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;
 }
Example #3
0
 public LDAPController(ILDAPService ldapService)
 {
     _ldapService = ldapService;
 }
 public SafetyIncidentController(ILDAPService ldapService, IEmailService emailService, IHierarchyService hierarchyService)
 {
     _ldapService      = ldapService;
     _emailService     = emailService;
     _hierarchyService = hierarchyService;
 }
Example #5
0
 public SharedController(ILDAPService ldapService)
 {
     _ldapService = ldapService;
 }
Example #6
0
 public ActiveDirectoryController(ILDAPService service)
 {
     _LDAPService = service;
 }
 public HoursWorkedController(ILDAPService ldapService, IHierarchyService hierarchyService)
 {
     _hierarchyService = hierarchyService;
     _ldapService = ldapService;
 }
Example #8
0
 public SharedController(ILDAPService ldapService)
 {
     _ldapService = ldapService;
 }
 public EmployeeSearchController(ILDAPService ldapService)
 {
     _ldapService = ldapService;
 }
Example #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;
 }
Example #12
0
 /// <summary>
 /// API de autenticacion ldap
 /// </summary>
 public ActiveDirectoryController()
 {
     _LDAPService = LDAPService.CreateInstance();
 }
Example #13
0
 public LDAPController(ILDAPService ldapService)
 {
     _ldapService = ldapService;
 }
Example #14
0
 public MeucciController(IMeucciService meucciService, ILDAPService lDAPService)
 {
     this.meucciService = meucciService;
     this.lDAPService   = lDAPService;
 }
Example #15
0
 public HoursWorkedController(ILDAPService ldapService, IHierarchyService hierarchyService)
 {
     _hierarchyService = hierarchyService;
     _ldapService      = ldapService;
 }
 public SafetyIncidentController(ILDAPService ldapService, IEmailService emailService, IHierarchyService hierarchyService)
 {
     _ldapService = ldapService;
     _emailService = emailService;
     _hierarchyService = hierarchyService;
 }