Newer
Older
IRIS_REFACTOR / irisDataBase / Service / IrisSynchDataService.cs
yxw on 29 Dec 2020 374 bytes 2.2.8 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);
       
    }
}