コード例 #1
0
 public GuarantorController(IGuarantor guarantorRepository, IStudentGuarantor studentGuarantor)
 {
     _guarantorRepository = guarantorRepository;
     _studentGuarantor    = studentGuarantor;
 }
コード例 #2
0
 public HomeController(IStudentRepository studentRepository, IHostingEnvironment hostingEnvironment, IStudentGuarantor studentGuarantor)
 {
     _studentRepository      = studentRepository;
     this.hostingEnvironment = hostingEnvironment;
     _sgRepo = studentGuarantor;
 }