Esempio n. 1
0
 public UserService(
     IAuthorizationDataService authData,
     IMapper mapper,
     IRepository <Olma.User> userRepo,
     ICustomersService customersService,
     IPostingAccountsService postingAccountsService,
     IPermissionsService permissionsService,
     IServiceProvider serviceProvider,
     IGraphFactory graphFactory,
     OlmaDbContext olmaDbContext, IRepository <Olma.Customer> customerRepo, IRepository <Olma.UserCustomerRelation> userCustomerRelationRepo) : base(authData, mapper)
 {
     _authData                 = authData;
     _userRepo                 = userRepo;
     _customersService         = customersService;
     _postingAccountsService   = postingAccountsService;
     _permissionsService       = permissionsService;
     _serviceProvider          = serviceProvider;
     _graphFactory             = graphFactory;
     _olmaDbContext            = olmaDbContext;
     _customerRepo             = customerRepo;
     _userCustomerRelationRepo = userCustomerRelationRepo;
     _mapper = mapper;
 }
 public PostingAccountsAdministrationController(IPostingAccountsService postingAccountsService)
 {
     _postingAccountsService = postingAccountsService;
 }
 public PostingAccountsController(IPostingAccountsService postingAccountsService)
 {
     _postingAccountsService = postingAccountsService;
 }