public int UpdateAuthor(Author entity) { if (validator.Validate(entity).IsValid) { authorDal.UpdateAuthor(entity); return(0); } return(-1); }