Ejemplo n.º 1
0
		private HotListArg BuildArg()
		{
			var result = new HotListArg
										{
											AppraiserId = _securityContext.CurrentAppraiserUser.Id,
											CompanyId =
												_securityContext.CurrentAppraiserUser.Company != null
													? (int?)_securityContext.CurrentAppraiserUser.Company.Id
													: null
										};

			return result;
		}
Ejemplo n.º 2
0
		public int GetCountOfHotListCollection(HotListArg hotListArg)
		{
			return _hotListRepository.GetCountOfHotListCollection(hotListArg);
		}
Ejemplo n.º 3
0
		public IEnumerable<HotList> GetHotListCollection(HotListArg hotListArg)
		{
			return _hotListRepository.GetCollection(hotListArg);
		}