Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save gdonega/6061fb3222b2045e0f3174bd616abe39 to your computer and use it in GitHub Desktop.
Save gdonega/6061fb3222b2045e0f3174bd616abe39 to your computer and use it in GitHub Desktop.
package com.testes.spring.exemplo.empresas.repositories;
import org.springframework.data.mongodb.repository.MongoRepository;
import org.springframework.stereotype.Repository;
import com.testes.spring.exemplo.empresas.models.EmpresaEnvelope;
@Repository
public interface EmpresaEnvelopeRepository extends MongoRepository<EmpresaEnvelope, String> {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment