Exemplo n.º 1
0
        public static Employee GetEmployee(string username, string password)
        {
            TeknoContext tekno = new TeknoContext();

            List <Employee> list = tekno.Employees.Where(x => x.UserName == username && x.Password == password).ToList();

            Employee employee = new Employee();

            employee = list[0];

            return(employee);
        }
Exemplo n.º 2
0
        public static bool AutControl(string username, string password)
        {
            TeknoContext tekdb = new TeknoContext();

            List <Employee> dblist = tekdb.Employees.Where(x => x.UserName == username && x.Password == password).ToList();

            if (dblist.Count > 0)
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }