Esempio n. 1
0
        public BalUser(int id)
        {
            try
            {
                if (dbcontext == null)
                {
                    dbcontext = new TransformerEntities();
                }

                User_db bal = dbcontext.User_db.FirstOrDefault(c => c.PK_User_Id == id);
                if (bal != null)
                {
                    Username  = bal.Username;
                    Password  = bal.Password;
                    Year      = bal.Year;
                    Phone     = bal.Phone;
                    Address   = bal.Address;
                    Is_Active = bal.Is_Active;
                    Email     = bal.Email;
                    Name      = bal.Name;
                }
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }
Esempio n. 2
0
        public long Insert(BalUser bal)
        {
            try
            {
                if (dbcontext == null)
                {
                    dbcontext = new TransformerEntities();
                }

                User_db dal = new User_db();
                dal.Username  = bal.Username;
                dal.Password  = bal.Password;
                dal.Phone     = bal.Phone;
                dal.Address   = bal.Address;
                dal.Is_Active = bal.Is_Active;
                dal.Name      = bal.Name;
                dal.Email     = bal.Email;
                dal.Year      = bal.Year;
                dbcontext.User_db.Add(dal);
                dbcontext.SaveChanges();
                return(dal.PK_User_Id);
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }
Esempio n. 3
0
        public void Update(BalUser bal, int id)
        {
            try
            {
                if (dbcontext == null)
                {
                    dbcontext = new TransformerEntities();
                }

                User_db abc = dbcontext.User_db.FirstOrDefault(c => c.PK_User_Id == id);
                if (abc != null)
                {
                    abc.Username  = bal.Username;
                    abc.Password  = bal.Password;
                    abc.Phone     = bal.Phone;
                    abc.Address   = bal.Address;
                    abc.Is_Active = true;
                    abc.Name      = bal.Name;


                    dbcontext.SaveChanges();
                }
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }
Esempio n. 4
0
        public void Delete(int id)
        {
            try
            {
                if (dbcontext == null)
                {
                    dbcontext = new TransformerEntities();
                }

                User_db abc = dbcontext.User_db.FirstOrDefault(c => c.PK_User_Id == id);
                if (abc != null)
                {
                    abc.Is_Active = false;
                    dbcontext.SaveChanges();
                }
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }
Esempio n. 5
0
        public void updatelogin(string bal, int id)
        {
            try
            {
                if (dbcontext == null)
                {
                    dbcontext = new TransformerEntities();
                }

                User_db abc = dbcontext.User_db.FirstOrDefault(c => c.PK_User_Id == id);
                if (abc != null)
                {
                    abc.Year      = bal;
                    abc.Is_Active = true;
                    dbcontext.SaveChanges();
                }
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }
Esempio n. 6
0
        public long check(string user)
        {
            try
            {
                if (dbcontext == null)
                {
                    dbcontext = new TransformerEntities();
                }

                User_db bal = dbcontext.User_db.FirstOrDefault(c => c.Username == user);
                if (bal != null)
                {
                    return(bal.PK_User_Id);
                }
                else
                {
                    return(0);
                }
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }
Esempio n. 7
0
        public long Login(string pass, string user)
        {
            try
            {
                if (dbcontext == null)
                {
                    dbcontext = new TransformerEntities();
                }

                User_db bal = dbcontext.User_db.FirstOrDefault(c => c.Username == user && c.Password == pass && c.Is_Active == true);
                if (bal != null)
                {
                    return(bal.PK_User_Id);
                }
                else
                {
                    return(0);
                }
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }