Badges.Controllers.StudentController.StudentController C# (CSharp) Method

StudentController() public method

public StudentController ( IRepositoryFactory repositoryFactory, IUserService userService, IFileService fileService ) : System
repositoryFactory IRepositoryFactory
userService IUserService
fileService IFileService
return System
        public StudentController(IRepositoryFactory repositoryFactory, IUserService userService, IFileService fileService)
            : base(repositoryFactory)
        {
            _userService = userService;
            _fileService = fileService;
        }