Example #1
0
        public InMemoryBankRepository(ICardService cardService, IBusinessLogicService businessLogicService)
        {
            _cardService          = cardService;
            _businessLogicService = businessLogicService;

            currentUser = FakeDataGenerator.GenerateFakeUser();
            ProducedFakeData();
        }
 public BankRepository(ICardRepository cardRepository,
                       IRepository <Transaction> transactionRepository,
                       ICardService cardService,
                       IBusinessLogicService businessLogicService)
 {
     _cardRepository        = cardRepository;
     _transactionRepository = transactionRepository;
     _cardService           = cardService;
     _businessLogicService  = businessLogicService;
 }
Example #3
0
 protected GenericController(IBusinessLogicService <TBL, TDA> service)
 {
     _businessLogicService = service;
 }
Example #4
0
 public ChildDialog(IBusinessLogicService businessLogicService, bool isChild = true)
 {
     _businessLogicService = businessLogicService;
     _isChild = isChild;
 }
Example #5
0
 public Program(IBusinessLogicService business, IDataSourceConnectionService dataSource, IPresentationService presentation)
 {
     Business     = business;
     DataSource   = dataSource;
     Presentation = presentation;
 }
 public FakeDataGenerator(IBusinessLogicService businessLogicService)
 {
     _businessLogicService = businessLogicService;
 }
Example #7
0
 public FakeChildDialog(IBusinessLogicService businessLogicService, bool isSuccess) : base(businessLogicService, true)
 {
     _isSuccess = isSuccess;
 }
Example #8
0
 public CardsController(IBankRepository repository, ICardService cardService, IBusinessLogicService businessLogicServer)
 {
     _repository = repository;
     _cardService = cardService;
     _businessLogicServer = businessLogicServer;
 }
Example #9
0
 public CarsController(IBusinessLogicService businessLogicService,
                       IAzureStorageService azureStorageService)
 {
     _businessLogic       = businessLogicService;
     _azureStorageService = azureStorageService;
 }
Example #10
0
 public ValuesController(IBusinessLogicService businessLogicService)
 {
     _businessLogicService = businessLogicService;
 }
Example #11
0
 public BusinessLogicController(IBusinessLogicService businessLogicService)
 {
     _businessLogicService = businessLogicService;
 }
Example #12
0
 public DataController(ILogger <DataController> logger, IBusinessLogicService service)
 {
     _logger  = logger;
     _service = service;
 }