* @deprecated replaced by {@link #create(Class, Class, ProxyBackedInformerFactory, PropertyProvider)}
*/
@Deprecated()
public static <Type, InformerType extends Informer<Type>> FinderCrudService<Type, InformerType> create(
Class<Type> typeClass, Class<InformerType> informerTypeClass, ProxyBackedInformerFactory factory) {
return create(typeClass, informerTypeClass, factory, new FieldBackedPropertyProvider());
}