public static async Task <Post> Add(Post post, Account account) { CheckValid(post); post.Owner = account; return(await PostDataAccess.Add(post)); }