public LoginController(IUnitOfWork unitOfWork, IAuthenticationProvider authenticationProvider, IResellerService resellerService) : base(unitOfWork) { _authenticationProvider = authenticationProvider; _resellerService = resellerService; }
public ResellerController(IResellerService resellerservice, IRoleService Rs, IClientService Cs, ISubscriptionsService Ss) { this.ResellerService = resellerservice; this.RoleService = Rs; this.ClientService = Cs; this.SubService = Ss; }
public ClientController(IActionService As, IClientService clientservice, IResellerService resellerservice, IRoleService Rs, ISubscriptionsService SS) { this.ActionService = As; this.ClientService = clientservice; this.ResellerService = resellerservice; this.RoleService = Rs; this.SubscriptionService = SS; }
public AccountController(IActionService As, IRoleService Rs, IClientService Cs, IResellerService ResellerServ, ISubscriptionsService SS) { ActionService = As; roleService = Rs; ClientService = Cs; ResellerService = ResellerServ; SubscriptionsService = SS; }
public OrganizationVatChangedMailBuilderService( IAppSettings arg0, IResellerService arg1, IInvoicingContactService arg2 ) { field0 = arg0; field1 = arg1; field2 = arg2; }
public OrganizationNameChangedMailBuilderService( IContextService arg0, IAppSettings arg1, IResellerService arg2 ) { field0 = arg0; field1 = arg1; field2 = arg2; }
public SalesController( ISalesService salesService, IResellerService resellerService, IMapper mapper, ILogger <SalesController> logger ) { this.salesService = salesService; this.resellerService = resellerService; this.mapper = mapper; this.logger = logger; }
public CreateResellerDTOValidator(IResellerService resellerService) { _resellerService = resellerService; RuleFor(x => x.Name).NotNull().WithMessage("Nome é obrigratório").MaximumLength(500); RuleFor(x => x.Email).NotNull().WithMessage("Email é obrigratório") .Must(ValidateEmail).WithMessage("Digite um email válido") .Must(EmailExists).WithMessage("Email já cadastrado") .MaximumLength(500); RuleFor(x => x.CPF).NotNull().WithMessage("CPF é obrigratório") .Must(VerifyExistsCPF).WithMessage("Já existe um cpf cadastrado") .Must(ValidateCPF).WithMessage("Cpf inválido") .MaximumLength(11); RuleFor(x => x.Password).NotNull().WithMessage("Senha é obrigratório"); RuleFor(x => x.LastName).MaximumLength(500); }
public CustomerController(IResellerService ResellerService, IGraphService GraphService, ICRESTService CrestService) { this.resellerService = ResellerService; this.graphService = GraphService; this.crestService = CrestService; }
public ResellerController(IUnitOfWork unitOfWork, IResellerService resellerService) : base(unitOfWork) { _resellerService = resellerService; }
public SubscriptionController(IResellerService ResellerService, IGraphService GraphService, ICRESTService CrestService) { this.resellerService = ResellerService; this.graphService = GraphService; this.crestService = CrestService; }
public ResellerController(IResellerService service, AuthService authService, IMapper mapper) { this.resellerService = service; this.authService = authService; this.mapper = mapper; }
public ResellerController(IAuthenticationService authenticationService, IResellerService resellerService, ILoggerFactory logFactory) { _logger = logFactory.CreateLogger <ResellerController>(); _authenticationService = authenticationService; _resellerService = resellerService; }