Example #1
0
 public bool Update(DocTypeDTO entity)
 {
     if (typesDAO.Update(new DocTypeBO(entity)) != null)
     {
         return(true);
     }
     else
     {
         return(false);
     }
 }
Example #2
0
 public long Insert(DocTypeDTO entity)
 {
     return(typesDAO.Insert(new DocTypeBO(entity)));
 }