public GuarantorController(IGuarantor guarantorRepository, IStudentGuarantor studentGuarantor) { _guarantorRepository = guarantorRepository; _studentGuarantor = studentGuarantor; }
public HomeController(IStudentRepository studentRepository, IHostingEnvironment hostingEnvironment, IStudentGuarantor studentGuarantor) { _studentRepository = studentRepository; this.hostingEnvironment = hostingEnvironment; _sgRepo = studentGuarantor; }