Newer
Older
IRIS_REFACTOR / irisDataBase / Service / IrisSynchDataService.cs
yanxiaowei on 11 Aug 2020 374 bytes first commit
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace irisDataBase.Service
{
    public interface IrisSynchDataService
    {
        int updateTable(ref string resultString);

        int updateTableFromOffline(string data);

        int clearTableFromOffline();

        int updateTableFromServer(string data);
       
    }
}