aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/FSE/Tango.FSE.Common/DataStore/IDataStoreProvider.cs
blob: a547668939739aa185121be55bde26cfec4655d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.DataStore.Editing;

namespace Tango.FSE.Common.DataStore
{
    public interface IDataStoreProvider
    {
        bool AcceptFirmwareChanges { get; set; }
        Task<DataStoreModel> GetDataStoreModel(String machineGuid);
        Task<DataStoreModel> UpdateDataStoreModel(DataStoreModel model, String machineGuid);
    }
}