using System.Collections.Generic; using System.Threading.Tasks; using Txgy.EWS.Client.Models; namespace Txgy.EWS.Client.IBLL { public interface IUpgradeFileBLL { //[Exception] //[LogBefore] Task> DiffFileListAsync(); Task> AllFileListAsync(); Task UploadFile(string fileName, string fullPath); } }