public bool Delete(int id)
 {
     if (id == 0)
     {
         return(false);
     }
     _footerAdminRepository.Delete(id);
     return(true);
 }
Exemplo n.º 2
0
 public bool Delete(int id)
 {
     if (id == 0) return false;
     var deleteSuccess = _footerAdminRepository.Delete(id);
     return true;
 }