Пример #1
0
 public static bool DeleteStudentArchivesContent(String strTitle, String StudentID)
 {
     Sql.SqlDeleteStudentArchivesContent qs = new StudentFile.Sql.SqlDeleteStudentArchivesContent();
     qs.GetID(strTitle, StudentID);
     Ops.OpStudentFileExec op = new StudentFile.Ops.OpStudentFileExec(qs);
     return(op.Do());
 }
Пример #2
0
 public static bool InsertStudentArchivesContent(String strTitle, String strContent, String strRemark, String StudentID)
 {
     Sql.SqlInsertStudentArchivesContent qs = new StudentFile.Sql.SqlInsertStudentArchivesContent();
     qs.GetInsertContent(strTitle, strContent, strRemark, StudentID);
     Ops.OpStudentFileExec op = new StudentFile.Ops.OpStudentFileExec(qs);
     return(op.Do());
 }
Пример #3
0
 public static bool InsertArchivesNew(String strAddTime, String strContent, String strAddPeople, String strRemark, String strStudentID)
 {
     Sql.SqlInsertStudentArchivesNew qs = new StudentFile.Sql.SqlInsertStudentArchivesNew();
     qs.GetContent(strAddTime, strContent, strAddPeople, strRemark, strStudentID);
     Ops.OpStudentFileExec op = new StudentFile.Ops.OpStudentFileExec(qs);
     return(op.Do());
 }
Пример #4
0
 public static bool InsertStudentFile(String ID)
 {
     Sql.SqlInsertStudentFile qs = new StudentFile.Sql.SqlInsertStudentFile();
     qs.GetID(ID);
     Ops.OpStudentFileExec op = new StudentFile.Ops.OpStudentFileExec(qs);
     return(op.Do());
 }
Пример #5
0
 public static bool DeleteArchivesNew(Int64 ID, String StudentID)
 {
     Sql.SqlDeleteArchivesNew qs = new StudentFile.Sql.SqlDeleteArchivesNew();
     qs.GetID(ID, StudentID);
     Ops.OpStudentFileExec op = new StudentFile.Ops.OpStudentFileExec(qs);
     return(op.Do());
 }