Exemplo n.º 1
0
        public ProfileController(IProfileServices profileService)
        {
            Guard.WhenArgument(profileService, "profileService").IsNull().Throw();


            this.profileService = profileService;
        }
Exemplo n.º 2
0
 public AccountController(ApplicationUserManager userManager, ApplicationSignInManager signInManager, IDropdownServices dropdownServices, IProfileServices profileServices)
 {
     UserManager       = userManager;
     SignInManager     = signInManager;
     _dropdownServices = dropdownServices;
     _profileServices  = profileServices;
 }
Exemplo n.º 3
0
 public ControllerServices(
     ITagServices tagServices,
     ITagDataServices tagDataServices,
     IMapper mapper,
     ILogger <ControllerServices> logger,
     INotificador notificator,
     IHubContext <NewTagHub> tagHub,
     IUserServices user,
     IProfileServices profile,
     IHttpContextAccessor accessor,
     IIpServices ipServices)
 {
     this.tagServices     = tagServices;
     this.tagDataServices = tagDataServices;
     this.mapper          = mapper;
     this.logger          = logger;
     this.notificator     = notificator;
     this.tagHub          = tagHub;
     this.user            = user;
     this.profile         = profile;
     this.accessor        = accessor;
     this.ipServices      = ipServices;
 }
Exemplo n.º 4
0
 public ViewController(IProfileServices profiles)
 {
     this.profiles = profiles;
 }
Exemplo n.º 5
0
 public ViewController(IProfileServices profiles)
 {
     this.profiles = profiles;
 }
Exemplo n.º 6
0
 public ProfileController(IProfileServices profileServices, IProfileResultServices profileResultServices)
 {
     _profileServices       = profileServices;
     _profileResultServices = profileResultServices;
 }
Exemplo n.º 7
0
 public ApplicationServices(IProfileServices profileServices)
 {
     _profileServices = profileServices;
 }
Exemplo n.º 8
0
 public ProfileController(ILiveChatData data)
     : base(data)
 {
     this.profileServices = new ProfileServices(this.Data);
 }
Exemplo n.º 9
0
 public EditProjectsController(IProjectServices projects, IProfileServices profiles)
 {
     this.projects = projects;
     this.profiles = profiles;
 }
Exemplo n.º 10
0
 public EditProjectsController(IProjectServices projects, IProfileServices profiles)
 {
     this.projects = projects;
     this.profiles = profiles;
 }
Exemplo n.º 11
0
 public ProfileController(IProfileServices profileServices)
 {
     this._profileServices = profileServices;
 }
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="services"></param>
 public ProfileController(IProfileServices services)
 {
     _services = services;
 }
 public ProfileController(IProfileServices profile)
 {
     this.profile = profile;
 }
Exemplo n.º 14
0
 public ProfileApplication(IProfileServices application)
     : base(application)
 {
     _application = application;
 }
Exemplo n.º 15
0
 public TagDTO(string username, IProfileServices profile, IEnumerable <TagDTO> tag) : this(tag) {
     Theme       = profile.Theme(username).Result;
     UserName    = username;
     Avatar      = profile.Avatar(username).Result;
     MainLinkImg = profile.MainLinkImg(username).Result;
 }
Exemplo n.º 16
0
 public HomeController(IProfileServices profiles)
 {
     this.profiles = profiles;
 }