public MediaController(IUserService userService, IAuthenticationService authenticationService,
                        IMediaService mediaService, ICustomEncoder customEncoder)
 {
     _userService           = userService;
     _authenticationService = authenticationService;
     _mediaService          = mediaService;
     _customEncoder         = customEncoder;
 }
Пример #2
0
 public BuildingUsersController(IBuildingService buildingService, IAuthenticationService authenticationService,
                                ICustomEncoder customEncoder, IUserService userService)
 {
     _authenticationService = authenticationService;
     _buildingService       = buildingService;
     _customEncoder         = customEncoder;
     _userService           = userService;
 }
 public ConversationsController(IConversationService conversationService, IAuthenticationService authenticationService,
                                ICustomEncoder customEncoder, IUserService userService)
 {
     _authenticationService = authenticationService;
     _conversationService   = conversationService;
     _customEncoder         = customEncoder;
     _userService           = userService;
 }
 public ParticipantsController(IParticipantService participantService, IAuthenticationService authenticationService,
                               ICustomEncoder customEncoder, IUserService userService)
 {
     _authenticationService = authenticationService;
     _participantService    = participantService;
     _customEncoder         = customEncoder;
     _userService           = userService;
 }
 public MatchesController(IMatchService matchService, IAuthenticationService authenticationService,
                          ICustomEncoder customEncoder, IUserService userService)
 {
     _authenticationService = authenticationService;
     _matchService          = matchService;
     _customEncoder         = customEncoder;
     _userService           = userService;
 }
Пример #6
0
 public UserService(IDal dal, IMapperHelper mapperHelper, IAuthenticationService authenticationService,
                    ICustomEncoder customEncoder)
 {
     _dal                   = dal;
     _mapperHelper          = mapperHelper;
     _authenticationService = authenticationService;
     _customEncoder         = customEncoder;
 }
Пример #7
0
 public SearchLocationsController(IUserService userService, IAuthenticationService authenticationService,
                                  ICustomEncoder customEncoder, IMapperHelper mapperHelper, ISearchLocationService searchLocationService)
 {
     _userService           = userService;
     _authenticationService = authenticationService;
     _customEncoder         = customEncoder;
     _mapperHelper          = mapperHelper;
     _searchLocationService = searchLocationService;
 }
 public PersonalitiesDetailsController(IUserService userService,
                                       IAuthenticationService authenticationService,
                                       ICustomEncoder customEncoder, IMapperHelper mapperHelper, IPersonalityService personalityService)
 {
     _userService           = userService;
     _authenticationService = authenticationService;
     _customEncoder         = customEncoder;
     _mapperHelper          = mapperHelper;
     _personalityService    = personalityService;
 }
 public MessagesController(IMessageService messageService, IUserService userService,
                           IAuthenticationService authenticationService,
                           ICustomEncoder customEncoder, IMapperHelper mapperHelper)
 {
     _messageService        = messageService;
     _userService           = userService;
     _authenticationService = authenticationService;
     _customEncoder         = customEncoder;
     _mapperHelper          = mapperHelper;
 }
 public TargetLocationsController(IUserService userService,
                                  IAuthenticationService authenticationService,
                                  ICustomEncoder customEncoder, IMapperHelper mapperHelper, ITargetLocationService targetLocationService)
 {
     _userService           = userService;
     _authenticationService = authenticationService;
     _customEncoder         = customEncoder;
     _mapperHelper          = mapperHelper;
     _targetLocationService = targetLocationService;
 }
 public LoginController(IUserService userService, IAuthenticationService authenticationService,
                        ICustomEncoder customEncoder, IMapperHelper mapperHelper,
                        ILogger <UsersController> logger)
 {
     _userService           = userService;
     _authenticationService = authenticationService;
     _customEncoder         = customEncoder;
     _mapperHelper          = mapperHelper;
     _logger = logger;
 }
Пример #12
0
 public UsersController(IUserService userService, IAuthenticationService authenticationService,
                        ICustomEncoder customEncoder, IMapperHelper mapperHelper,
                        ILogger <UsersController> logger, RentTogetherDbContext rentTogetherDbContext)
 {
     _userService           = userService;
     _authenticationService = authenticationService;
     _customEncoder         = customEncoder;
     _mapperHelper          = mapperHelper;
     _logger = logger;
     _rentTogetherDbContext = rentTogetherDbContext;
 }
Пример #13
0
 public MediaService(IDal dal, ICustomEncoder customEncoder)
 {
     _dal           = dal;
     _customEncoder = customEncoder;
 }
Пример #14
0
 public Mapper(ICustomEncoder customEncoder)
 {
     _customEncoder = customEncoder;
 }
Пример #15
0
 public BuildingService(IDal dal, ICustomEncoder customEncoder)
 {
     _dal           = dal;
     _customEncoder = customEncoder;
 }