public ResponseModel GetAllByOwnerId(int id = 0) { var message = new MessageModel(); var list = repo.GetAllByOwnerId(id); SetListResponse(list, message); return(response); }