public PostsFlowService(string userId)
        {
            store = StorageService.GetStorage();

            currentProfile = store.Profiles.Where(p => p.UserId == userId).FirstOrDefault();
        }