Beispiel #1
0
        /// <summary>
        /// Updates tab "kasa"
        /// </summary>
        public void UpdateKasaTab()
        {
            var customerList = _customerQueryRepo.Query(new CustomerQueryModel())
                               .Map(x => x.Items.ToList())
                               .Reduce(_ => throw new Exception());

            _teglasConector.WriteKasaTab(customerList);

            _lipaConector.WriteKasaTab(customerList);

            _hedoneConector.WriteKasaTab(customerList);
        }
Beispiel #2
0
 public void WriteKasaTab()
 {
     _hedoneConector.WriteKasaTab(fakeDataFactory.GetCustomers());
 }