Exemplo n.º 1
0
        public static bool DeleteWorkUnitName(string WUID)
        {
            Sql.SqlDeleteWorkUnitName ExString = new Sql.SqlDeleteWorkUnitName();
            ExString.GetSelectedID(WUID);
            OpStudentMngExec OpsEx = new OpStudentMngExec(ExString);

            return(OpsEx.Do());
        }
Exemplo n.º 2
0
        public static bool AddWorkUnitName(string WUN)
        {
            Sql.SqlAddWorkUnitName ExString = new Sql.SqlAddWorkUnitName();
            ExString.GetWorkUnitName(WUN);
            OpStudentMngExec OpsEx = new OpStudentMngExec(ExString);

            return(OpsEx.Do());
        }
Exemplo n.º 3
0
        public static bool AddDepartName(string DpN)
        {
            Sql.SqlAddDepartmentName ExecString = new Sql.SqlAddDepartmentName();
            ExecString.GetDepartmentName(DpN);
            OpStudentMngExec OpsExec = new OpStudentMngExec(ExecString);

            return(OpsExec.Do());
        }
Exemplo n.º 4
0
        public static bool DeleteDepartName(string DpId)
        {
            Sql.SqlDeleteDepartmentName ExecString = new Sql.SqlDeleteDepartmentName();
            ExecString.SetSelectedID(DpId);
            OpStudentMngExec OpsExec = new OpStudentMngExec(ExecString);

            return(OpsExec.Do());
        }
Exemplo n.º 5
0
        public static bool InsertValidity(String StudentID, String strContent, Int16 Val)
        {
            Sql.SqlInsertVal exstr = new StundentInfoManagement.Sql.SqlInsertVal();
            exstr.GetContent(StudentID, strContent, Val);
            OpStudentMngExec op = new OpStudentMngExec(exstr);

            return(op.Do());
        }