Ejemplo n.º 1
0
        public void LogInUser(string Email_id, string Mobile_number, string Password)
        {
            Hashtable ht = new Hashtable();

            ht.Add("EMAIL_ID", Email_id);
            ht.Add("MOBILE_NUMBER", Mobile_number);
            ht.Add("PASSWORD", Password);

            DataTable dt = DataAccessLayer.DataAccess.GetDataTable("LOGINUSER", CommandType.StoredProcedure, ht);

            USER_MASTER objUSER_MASTER = new USER_MASTER();

            FillProperties(DataAccessLayer.DataAccess.GetObjectArraylist(objUSER_MASTER.GetType(), dt));
        }
Ejemplo n.º 2
0
        public int Add(USER_MASTER value)
        {
            int newIndex = List.Add(value);

            return(newIndex);
        }