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

StudentController() public method

public StudentController ( IStudentRepository studentRepository, IParentRepository parentRepository, IContactInformationRepository contactInformationRepository ) : System
studentRepository IStudentRepository
parentRepository IParentRepository
contactInformationRepository IContactInformationRepository
return System
        public StudentController(IStudentRepository studentRepository, IParentRepository parentRepository,
            IContactInformationRepository contactInformationRepository)
        {
            _studentRepository = studentRepository;
            _parentRepository = parentRepository;
            _contactInformationRepository = contactInformationRepository;
            _viewMessageLogic = new ViewMessageLogic(this);
        }