Merge from booking branch
This commit is contained in:
parent
25906d0227
commit
9a2652739b
266 changed files with 12833 additions and 2337 deletions
|
|
@ -4,9 +4,20 @@ using Yavsc.Model.FrontOffice;
|
|||
|
||||
namespace Yavsc.Model.WorkFlow
|
||||
{
|
||||
/// <summary>
|
||||
/// I data provider.
|
||||
/// </summary>
|
||||
public interface IDataProvider<T>
|
||||
{
|
||||
/// <summary>
|
||||
/// Get the specified id.
|
||||
/// </summary>
|
||||
/// <param name="id">Identifier.</param>
|
||||
T Get (long id);
|
||||
/// <summary>
|
||||
/// Update the specified data.
|
||||
/// </summary>
|
||||
/// <param name="data">Data.</param>
|
||||
void Update (T data);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue