internal IEnumerable <Blog> GetAllByCreatorEmail(string queryProfileEmail, string email) { return(_repo.GetByCreatorEmail(queryProfileEmail).ToList().FindAll(b => b.CreatorEmail == email || b.Published)); }