public void Initialize()
 {
     string[] testConfigBuffer = { "" };
     string[] testReaderBuffer = { "" };
     _testRepository     = new TestRepository(testConfigBuffer, testReaderBuffer);
     _iConfigRuleFactory = new ConfigRuleFactory(new PeriodSelectFactory(), new StatCalcFactory());
     _testConfigReader   = new TestConfigReader(_testRepository, _iConfigRuleFactory);
 }
Beispiel #2
0
 public Service(iRepository userRepository)
 {
     _repository = userRepository;
 }
 public OrdersController(iOrderRepository orderRepo, iRepository repo)
 {
     orderRepository = orderRepo;
     repository      = repo;
 }
Beispiel #4
0
 public HomeController(iRepository repo) => repository = repo;
Beispiel #5
0
 public TotalTempReader(iRepository repository)
 {
     _repository = repository;
 }
Beispiel #6
0
 public ItemsProcessor(iRepository reposi)
 {
     repo = reposi;
 }
Beispiel #7
0
 public ConfigReader(iRepository repository, IConfigRuleFactory configRuleFactory)
 {
     this._repository        = repository;
     this._configRuleFactory = configRuleFactory;
 }
Beispiel #8
0
 public MillimanReader(iRepository repository, ConfigReader configReader, TotalTempReader totalTempReader)
 {
     this._repository      = repository;
     this._configReader    = configReader;
     this._totalTempReader = totalTempReader;
 }
Beispiel #9
0
 public void SetUp()
 {
     _respository = A.Fake <iRepository>();
 }
Beispiel #10
0
 public playerProcessor(iRepository reposi)
 {
     repo = reposi;
 }
Beispiel #11
0
 public TestConfigReader(iRepository repository, IConfigRuleFactory configRuleFactory) : base(repository, configRuleFactory)
 {
 }