public IEnumerable <LotEntity> GetAllLotsCreatedByUserId(int userId)
 {
     return(_lotRepository.GetAllLotsCreatedByUser(userId).Select(a => a.ToBllLotEntity()));
 }