Exemple #1
0
 /// <summary>
 /// 构造方法
 /// </summary>
 public CommunityInteractionAppService(IRepository <CommunityInteraction, long> communityInteractionRepository,
                                       CommunityInteractionManage communityInteractionManage, IRepository <UserAccount, long> userAccountRepository,
                                       UserAccountManage userAccountManage)
 {
     _communityInteractionRepository = communityInteractionRepository;
     _communityInteractionManage     = communityInteractionManage;
     _userAccountRepository          = userAccountRepository;
     _userAccountManage = userAccountManage;
 }
 /// <summary>
 /// 构造方法
 /// </summary>
 public UserAccountAppService(IRepository <UserAccount, long> userAccountRepository, UserAccountManage userAccountManage,
                              IRepository <DepartmentInfo, long> departmentRepository, DepartmentInfoManage departmentInfoManage,
                              IRepository <JobPost, long> jobPostRepository, JobPostManage jobPostManage)
 {
     _userAccountRepository = userAccountRepository;
     _userAccountManage     = userAccountManage;
     _departmentRepository  = departmentRepository;
     _departmentInfoManage  = departmentInfoManage;
     _jobPostRepository     = jobPostRepository;
     _jobPostManage         = jobPostManage;
 }