public CategoriesDTO GetCategoriesById(int id) { if (id < 0) { return(null); } return(categoriesDAO.SearchById(id)); }