예제 #1
0
        public void Delete(int id)
        {
            JobDAL dal = new JobDAL();

            dal._conn = this._conn;
            dal.Delete(id);
        }
예제 #2
0
 public void Delete(JobML Job)
 {
     try
     {
         JobDAL.Delete(Job);
     }
     catch (Exception ex)
     {
         throw new Exception(String.Format("{0}.Delete: {1}", core, ex));
     }
 }
예제 #3
0
파일: Job.cs 프로젝트: vibhum21/dotnet2
        public static bool Delete()
        {
            bool status = JobDAL.Delete(2);

            return(status);
        }
예제 #4
0
 public static void Delete(Job add)
 {
     db.Delete(add);
 }