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