Exemplo n.º 1
0
 public UserController(ILandlordService landlordService, ISessionDetails session, ISessionHelper sessionHelper, IHttpContextHelper httpContextHelper)
 {
     _session = session;
     _sessionHelper = sessionHelper;
     _httpContextHelper = httpContextHelper;
     _landlordService = landlordService;
 }
Exemplo n.º 2
0
 public SegmentService(IIdentityLogicFactory identityLogicFactory, ITraitBuilder traitBuilder, IApplicationService applicationService, ILandlordService landlordService)
 {
     _identityLogicFactory = identityLogicFactory;
     _traitBuilder = traitBuilder;
     _applicationService = applicationService;
     _landlordService = landlordService;
 }
Exemplo n.º 3
0
 public PropertyController(ILandlordService landlordService, ISessionDetails sessionDetails)
 {
     _landlordService = landlordService;
     _sessionDetails = sessionDetails;
 }
 public LandlordQueryController(ILandlordService landlordService)
 {
     _landlordService = landlordService;
 }
Exemplo n.º 5
0
 public PropertyImageController(ISessionDetails session, ILandlordService landlordService)
 {
     _session = session;
     _landlordService = landlordService;
 }
 public LandlordController(ILandlordService landlordService)
 {
     _landlordService = landlordService;
 }