public EducationalBackgroundController(IUnitOfWork unitOfWork, IEducationalBackgroundService educationalBackgroundService,IApplicationUserManager userManager)
 {
     _unitOfWork = unitOfWork;
     _educationalBackgroundService = educationalBackgroundService;
     _userManager = userManager;
 }
Ejemplo n.º 2
0
 public EducationalBackgroundController(IUnitOfWork unitOfWork, IEducationalBackgroundService educationalBackgroundService, IApplicationUserManager userManager)
 {
     _unitOfWork = unitOfWork;
     _educationalBackgroundService = educationalBackgroundService;
     _userManager = userManager;
 }
 public EducationalBackgroundController(IUnitOfWork unitOfWork, IEducationalBackgroundService educationalBackgroundService,IReferentialTeacherService referentialTeacherService)
 {
     _unitOfWork = unitOfWork;
     _educationalBackgroundService = educationalBackgroundService;
     _referentialTeacherService = referentialTeacherService;
 }