示例#1
0
 public SysUserInfoBLL(ISysUserInfoDAL sysUserInfoDAL, ISysRoleBLL sysRoleBLL, ILogger <SysUserInfoBLL> logger, ICurrencyClient client, IBaseDAL baseDAL) : base(baseDAL)
 {
     _sysUserInfoDAL = sysUserInfoDAL;
     _sysRoleBLL     = sysRoleBLL;
     _logger         = logger;
     _client         = client;
 }
示例#2
0
 public HomeController(ISysUserInfoBLL sysUserInfoBLL, ISysRoleBLL sysRoleBLL, ISysPermissionBLL sysPermissionBLL,
                       ILogger <HomeController> logger, ICurrencyClient client)
 {
     _sysUserInfoBLL   = sysUserInfoBLL;
     _sysRoleBLL       = sysRoleBLL;
     _sysPermissionBLL = sysPermissionBLL;
     _logger           = logger;
     _client           = client;
 }
 public CurrencyService(
     ISystemTime time,
     ICurrencyClient currencyClient,
     IMapper mapper)
 {
     _time           = time;
     _currencyClient = currencyClient;
     _mapper         = mapper;
 }
示例#4
0
 public FastWidgetController(IDataStorage storage, ISettingsStorage settings, FinanceHelper financeHelper, ConvertHelper converter, ICurrencyClient currency, UsersHelper usersHelper)
 {
     _storage       = storage;
     _settings      = settings;
     _financeHelper = financeHelper;
     _converter     = converter;
     _currency      = currency;
     _usersHelper   = usersHelper;
 }
示例#5
0
 /// <summary>
 /// Сервис веб приложения
 /// </summary>
 public WebAppTestService(
     IDealClient dealClient,
     IConfiguration configuration,
     ICurrencyClient currencyClient,
     ITransactionClient transactionClient
     )
 {
     _dealClient        = dealClient;
     _configuration     = configuration;
     _currencyClient    = currencyClient;
     _transactionClient = transactionClient;
 }
示例#6
0
 /// <summary>
 /// Сервис сделок
 /// </summary>
 public DealService(
     ICurrencyClient currencyClient,
     ITransactionClient transactionClient,
     IOfferRepository offerRepository,
     IUnitOfWork unitOfWork
     )
 {
     _currencyClient    = currencyClient;
     _transactionClient = transactionClient;
     _offerRepository   = offerRepository;
     _unitOfWork        = unitOfWork;
 }
示例#7
0
 public CurrencyService(ICurrencyClient currencyClient, ICurrencyRepository currencyRepository)
 {
     _currencyClient = currencyClient;
     _currencyRepo   = currencyRepository;
 }