I have integrated the yeoman angular-fullstack boilerplate into my project.
'use strict';
class LoginController {
// Implementing login functionality.
}
angular.module('myApp')
.controller('LoginController', LoginController);
What is the best way to perform dependency injection for a specific controller?