예제 #1
0
        public int UpdateFinalStatus(string username, string Testid, string Testmodel)
        {
            result = dal.GetFinalScoreOfCandidate(Testid);

            dal.UpdateFinalStatus(username, Testid, Testmodel, result);
            dal.UpdateMainTableAfterTest(Testid, result);
            dal.Delete(Testid);
            return(result);
        }
 /// <summary>
 /// 删除一条数据
 /// </summary>
 public bool Delete(string ID)
 {
     return(dal.Delete(ID));
 }
예제 #3
0
 public void DeleteProject(int ID)
 {
     projectDAL.Delete(ID);
 }
예제 #4
0
 public static int Delete(int projectId)
 {
     return(ProjectDAL.Delete(projectId));
 }