示例#1
0
 public DeTaiDaDangKyController(IDeTaiNghienCuu serviceDeTai, ISinhVien serviceSV, INhomSinhVien serviceNhomSV, IMapper mapper)
 {
     _serviceDeTai  = serviceDeTai;
     _serviceSV     = serviceSV;
     _serviceNhomSV = serviceNhomSV;
     _mapper        = mapper;
 }
示例#2
0
 public BaoCaoTienDoController(IDeTaiNghienCuu service, IBaoCaoTienDo serviceBaoCao,
                               IAuthorizationService authorizationService, ISinhVien serviceSV,
                               INhomSinhVien serviceNhomSV, INhom serviceNhom, IMapper mapper, IHostingEnvironment hostingEnvironment)
 {
     _mapper               = mapper;
     _serviceSV            = serviceSV;
     _service              = service;
     _serviceBaoCao        = serviceBaoCao;
     _serviceNhom          = serviceNhom;
     _serviceNhomSV        = serviceNhomSV;
     _hostingEnvironment   = hostingEnvironment;
     _authorizationService = authorizationService;
 }
示例#3
0
 public DangKyDeTaiController(IDeTaiNghienCuu service, IAuthorizationService authorizationService, ISinhVien serviceSV,
                              INhomSinhVien serviceNhomSV, INhom serviceNhom, IMapper mapper, IHostingEnvironment hostingEnvironment,
                              IMoDot serviceMoDot)
 {
     _mapper               = mapper;
     _serviceSV            = serviceSV;
     _service              = service;
     _serviceNhom          = serviceNhom;
     _serviceNhomSV        = serviceNhomSV;
     _hostingEnvironment   = hostingEnvironment;
     _authorizationService = authorizationService;
     _serviceMoDot         = serviceMoDot;
 }
示例#4
0
 public HomeController(ISinhVien service)
 {
     _service = service;
 }