Created
March 12, 2020 03:11
-
-
Save gdonega/6061fb3222b2045e0f3174bd616abe39 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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