using TIAM.Entities.Products; namespace TIAMWebApp.Shared.Application.Interfaces { public interface ISessionServiceClient : IAcWebSessionServiceClient { public bool HasCompany { get; set; } public bool IsDriver { get; set; } public List GetHotels(); public Guid DriverPersmissionId { get; set; } } }