using System; using System.Collections.Generic; using Yavsc.Model.FrontOffice; namespace Yavsc.Model.WorkFlow { /// /// I data provider. /// public interface IDataProvider where T : IIdentified { /// /// Get the specified id. /// /// Identifier. T Get (IDT id); /// /// Update the specified data. /// /// Data. void Update (T data); } }