/// <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); }
public void WriteKasaTab() { _lipaConector.WriteKasaTab(_fakeDataFactory.GetCustomers()); }