Add Outlook Inspired and Stock Market demos

This commit is contained in:
maxerokh
2018-12-13 18:49:44 +03:00
parent b5cab35919
commit 2e45b5d38f
833 changed files with 124450 additions and 47 deletions

View File

@@ -0,0 +1,29 @@
using System;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Linq.Expressions;
using DevExpress.Mvvm;
using DevExpress.Mvvm.POCO;
using DevExpress.Mvvm.DataAnnotations;
using DevExpress.DevAV.Common.Utils;
using DevExpress.Mvvm.DataModel;
namespace DevExpress.DevAV.Common.ViewModel {
/// <summary>
/// The base interface for view models representing a single entity.
/// </summary>
/// <typeparam name="TEntity">An entity type.</typeparam>
/// <typeparam name="TPrimaryKey">An entity primary key type.</typeparam>
public interface ISingleObjectViewModel<TEntity, TPrimaryKey> {
/// <summary>
/// The entity represented by a view model.
/// </summary>
TEntity Entity { get; }
/// <summary>
/// The entity primary key value.
/// </summary>
TPrimaryKey PrimaryKey { get; }
}
}