コード例 #1
0
ファイル: HotListService.cs プロジェクト: evkap/DVS
		private HotListArg BuildArg()
		{
			var result = new HotListArg
										{
											AppraiserId = _securityContext.CurrentAppraiserUser.Id,
											CompanyId =
												_securityContext.CurrentAppraiserUser.Company != null
													? (int?)_securityContext.CurrentAppraiserUser.Company.Id
													: null
										};

			return result;
		}
コード例 #2
0
ファイル: HotListManager.cs プロジェクト: evkap/DVS
		public int GetCountOfHotListCollection(HotListArg hotListArg)
		{
			return _hotListRepository.GetCountOfHotListCollection(hotListArg);
		}
コード例 #3
0
ファイル: HotListManager.cs プロジェクト: evkap/DVS
		public IEnumerable<HotList> GetHotListCollection(HotListArg hotListArg)
		{
			return _hotListRepository.GetCollection(hotListArg);
		}