/// <summary> /// Constructor for the CredentialController class. /// </summary> public CredentialController() { this.credentialSource = new CredentialDAL(); }
public static bool Validate(string userName, string password) { bool status = CredentialDAL.validate(userName, password); return(status); }
public CompanyBAL() { companyDal = new CompanyDAL(); _credentialDal = new CredentialDAL(); }
public JobSeekerBAL() { _jobSeekerDal = new JobSeekerDAL(); _credentialDal = new CredentialDAL(); }
public CredentialBAL() { _credentialDal = new CredentialDAL(); }