Example #1
0
 public int PostOutUser(string sql, string employeeid)
 {
     _timeinpost = new TimeInPost(sql);
     return(_timeinpost.TimeOutRecord(employeeid));
 }
Example #2
0
 public int GettingName(string sql, string employeeid)
 {
     _timeinpost = new TimeInPost(sql);
     return(_timeinpost.GetName(employeeid));
 }
Example #3
0
 public int UserAuthenticate(string sql, string user, string pass)
 {
     _timeinpost = new TimeInPost(sql);
     return(_timeinpost.AuthenticateUser(user, pass));
 }