예제 #1
0
        public bool Add(Model.Students model)
        {
            StringBuilder strSql = new StringBuilder();

            strSql.Append("insert into Students(");
            strSql.Append("stuid,stuName,pwd,email,imgUrl,class)");
            strSql.Append(" values (");
            strSql.Append("@stuid,@stuName,@pwd,@email,@imgUrl,@class)");
            SqlParameter[] parameters =
            {
                new SqlParameter("@stuid",   SqlDbType.NVarChar, 100),
                new SqlParameter("@stuName", SqlDbType.NVarChar,  50),
                new SqlParameter("@pwd",     SqlDbType.NVarChar,  50),
                new SqlParameter("@email",   SqlDbType.NVarChar,  50),
                new SqlParameter("@imgUrl",  SqlDbType.NVarChar, 200),
                new SqlParameter("@class",   SqlDbType.NVarChar, 50)
            };
            parameters[0].Value = model.Id;
            parameters[1].Value = model.StuName;
            parameters[2].Value = model.Pwd;
            parameters[3].Value = model.Email;
            parameters[4].Value = model.ImgUrl;
            parameters[5].Value = model.Bj;

            int rows = SqlHelp.ExecuteSql(strSql.ToString(), parameters);

            if (rows > 0)
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }
예제 #2
0
 private void LoadEntity(Model.Students model, DataRow row)
 {
     model.Id      = row["stuid"].ToString();
     model.StuName = row["stuName"].ToString();
     model.Pwd     = row["pwd"].ToString();
     model.Email   = row["email"].ToString();
     model.ImgUrl  = row["imgUrl"].ToString();
     model.Bj      = row["class"].ToString();
 }
예제 #3
0
        public Model.Student FindStudent(string StudentID)
        {
            Model.Student student;

            Model.Students studentmanager = new Model.Students();

            student = studentmanager.GetStudent(StudentID);

            return(student);
        }
예제 #4
0
        public bool RemoveStudent(string StudentID)
        {
            bool confirmation;

            Model.Students studentmanager = new Model.Students();

            confirmation = studentmanager.DeleteStudent(StudentID);

            return(confirmation);
        }
예제 #5
0
        public bool ModifyStudent(Model.Student enrolledStudent)
        {
            bool confirmation;

            Model.Students studentmanager = new Model.Students();

            confirmation = studentmanager.UpdateStudent(enrolledStudent);

            return(confirmation);
        }
예제 #6
0
        public bool EnrollStudent(Model.Student acceptedStudent, string programCode)
        {
            bool confirmation;

            Model.Students studentmanager = new Model.Students();

            confirmation = studentmanager.AddStudent(acceptedStudent, programCode);

            return(confirmation);
        }
예제 #7
0
        public List <Model.Students> GetAllList()
        {
            string sql = "select * from  Students  ";

            DataTable dt = SqlHelp.GetDataTable(sql, CommandType.Text);

            if (dt.Rows.Count > 0)
            {
                List <Model.Students> list = new List <Model.Students>();

                foreach (DataRow row in dt.Rows)
                {
                    Model.Students Students = new Model.Students();
                    LoadEntity(Students, row);
                    list.Add(Students);
                }
                return(list);
            }
            else
            {
                return(null);
            }
        }
예제 #8
0
 public bool Add(Model.Students model)
 {
     return(dal.Add(model));
 }