public CollegeController(NEPService.CollegeService.ICollegeService collegeService, IStorage storageService, NEPService.EducationService.IEducationService educationService, IEncryption encryptionService)
 {
     _CollegeService    = collegeService;
     _storageService    = storageService;
     _educationService  = educationService;
     _encryptionService = encryptionService;
 }
 public CollegeEducationController(NEPService.CollegeService.ICollegeService collegeService, IClientService clientService, NEPService.EducationService.IEducationService educationService, IEncryption encryptionService)
 {
     _collegeService    = collegeService;
     _educationService  = educationService;
     _encryptionService = encryptionService;
     _clientService     = clientService;
 }
 public HomeController(NEPService.EducationService.IEducationService educationService, NEPService.CollegeService.ICollegeService collegeService, NEPService.NewsService.INewsService newsService, IEncryption encryptionService, NEPService.ClientService.IClientService clientService)
 {
     _educationService  = educationService;
     _collegeService    = collegeService;
     _newsService       = newsService;
     _encryptionService = encryptionService;
     _clientService     = clientService;
 }
Exemplo n.º 4
0
 //
 // GET: /College/
 public CollegeController(NEPService.CollegeService.ICollegeService collegeService, IStorage storageService, NEPService.ClientService.IClientService clientService)
 {
     _CollegeService = collegeService;
     _storageService = storageService;
     _clientService  = clientService;
 }