/// <summary>
 /// Constructor for the CredentialController class.
 /// </summary>
 public CredentialController()
 {
     this.credentialSource = new CredentialDAL();
 }
Beispiel #2
0
        public static bool Validate(string userName, string password)
        {
            bool status = CredentialDAL.validate(userName, password);

            return(status);
        }
Beispiel #3
0
 public CompanyBAL()
 {
     companyDal     = new CompanyDAL();
     _credentialDal = new CredentialDAL();
 }
Beispiel #4
0
 public JobSeekerBAL()
 {
     _jobSeekerDal  = new JobSeekerDAL();
     _credentialDal = new CredentialDAL();
 }
 public CredentialBAL()
 {
     _credentialDal = new CredentialDAL();
 }