public MembershipManagementService(IUserService userService, IFormsAuthenticationService formsAuthenticationService, 
     IEUniversityUow eUniversityUow, IAuthorizationService authorizationService, IRoleService roleService, IStudentProfileService studentProfileService)
 {
     this.userService = userService;
     this.formsAuthenticationService = formsAuthenticationService;
     this.eUniversityUow = eUniversityUow;
     this.authorizationService = authorizationService;
     this.roleService = roleService;
     this.studentProfileService = studentProfileService;
 }
 public DashboardManagementService(IAuthorizationService authorizationService, IStudentProfileService studentProfileService,
     ICurriculumService curriculumService, IStudentThemeService studentThemeService, IEUniversityUow universityUow,
     ISubjectManagementService subjectManagementService, IGroupService groupService, IThemeService themeService)
 {
     this.authorizationService = authorizationService;
     this.studentProfileService = studentProfileService;
     this.curriculumService = curriculumService;
     this.studentThemeService = studentThemeService;
     this.universityUow = universityUow;
     this.subjectManagementService = subjectManagementService;
     this.groupService = groupService;
     this.themeService = themeService;
 }
 public SubjectManagementService(ISubjectService subjectService, IEUniversityUow universityUow)
 {
     this.subjectService = subjectService;
     this.universityUow = universityUow;
 }