Skip to content

Instantly share code, notes, and snippets.

@varundwarkani
Created April 26, 2021 08:06
Show Gist options
  • Save varundwarkani/dd9b8d322fff79dc3b99fc314b49bbae to your computer and use it in GitHub Desktop.
Save varundwarkani/dd9b8d322fff79dc3b99fc314b49bbae to your computer and use it in GitHub Desktop.
public class AuthenticationRepository {
private ApiService apiService;
private UserDataDAO userDataDAO;
@Inject
AuthenticationRepository(ApiService apiService, UserDataDAO userDataDAO) {
this.apiService = apiService;
this.userDataDAO = userDataDAO;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment