add method
Add a PolicyPresentationModel to the repository, cached
Implementation
@override
Future<PolicyPresentationModel> add(PolicyPresentationModel value) {
  return reference.add(value).then((newValue) {
    fullCache[value.documentID] = newValue;
    return newValue;
  });
}