コード例 #1
0
 public void Detele(int id)
 {
     _context.Delete(new About {
         Id = id
     });
 }
コード例 #2
0
 public void Delete(About parameter)
 {
     _aboutDAL.Delete(parameter);
 }
コード例 #3
0
 public void AboutDelete(About about)
 {
     _aboutDAL.Delete(about);
 }
コード例 #4
0
 public void DeleteAbout(About about)
 {
     _aboutDal.Delete(about);
 }
コード例 #5
0
 public void Delete(int id)
 {
     _aboutDAL.Delete(new About {
         Id = id
     });
 }