Exemplo n.º 1
0
 public SocialAreasController(
     ISocialAreaService socialAreaService,
     ILogger <SocialAreasController> logger)
 {
     SocialAreaService = socialAreaService;
     _logger           = logger;
 }
Exemplo n.º 2
0
 public CustomerPersonalDataController(
     ICustomerService customerService,
     ISocialAreaService socialAreaService,
     IAttachmentService attachmentService,
     ILogger <CustomerPersonalDataController> logger)
 {
     CustomerService   = customerService;
     SocialAreaService = socialAreaService;
     AttachmentService = attachmentService;
     _logger           = logger;
 }
Exemplo n.º 3
0
 public TalentPersonalDataController(
     ITalentService talentService,
     ISocialAreaService socialAreaService,
     IAttachmentService attachmentService,
     ILogger <TalentPersonalDataController> logger)
 {
     TalentService     = talentService;
     SocialAreaService = socialAreaService;
     AttachmentService = attachmentService;
     _logger           = logger;
 }
Exemplo n.º 4
0
 public CustomerPersonalDataController(
     ICustomerService customerService,
     ISocialAreaService socialAreaService,
     IAttachmentService attachmentService,
     IFirebaseRegistrationTokenService firebaseRegistrationTokenService,
     ILogger <CustomerPersonalDataController> logger)
 {
     CustomerService   = customerService;
     SocialAreaService = socialAreaService;
     AttachmentService = attachmentService;
     FirebaseRegistrationTokenService = firebaseRegistrationTokenService;
     _logger = logger;
 }
Exemplo n.º 5
0
 public RegisterAsTalentModel(
     UserManager <ApplicationUser> userManager,
     SignInManager <ApplicationUser> signInManager,
     ILogger <RegisterModel> logger,
     //IEmailSender emailSender,
     ITalentService talentService,
     ISocialAreaService socialAreaService)
 {
     _userManager   = userManager;
     _signInManager = signInManager;
     _logger        = logger;
     //EmailSender = emailSender;
     TalentService     = talentService;
     SocialAreaService = socialAreaService;
 }
Exemplo n.º 6
0
 public AccountController(
     IFirebaseService firebaseService,
     SignInManager <ApplicationUser> signInManager,
     //ILogger<LoginModel> logger,
     UserManager <ApplicationUser> userManager,
     ICustomerService customerService,
     ITalentService talentService,
     ISocialAreaService socialAreaService,
     ILogger <AccountController> logger)
 {
     FirebaseService = firebaseService;
     _signInManager  = signInManager;
     //_logger = logger;
     _userManager      = userManager;
     CustomerService   = customerService;
     TalentService     = talentService;
     SocialAreaService = socialAreaService;
     _logger           = logger;
 }