/* * IExcelReader.cs 0.1 * * Copyright 2006 Ian Escarro. All rights reserved. * PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */ using System; namespace RuralNet.Shinobi.Data { /// /// /// public interface IExcelReader { ExcelRow First(); ExcelRow Next(); bool IsDone { get; } ExcelRow CurrentItem { get; } } }