こんにちは私はプロパティを含む2つのクラスを持っています&私はそのプロパティとして2つのクラスのリストを含むクラスを持っています。created_dateでソートされた両方のクラスのオブジェクトを含む単一のリストを返すことになっています。any1は役に立ちますか?以下の3つのクラスを貼り付けました。
これはファーストクラスです:-
public partial class TouchPointModel : BaseModel
{
public List<EntityModel> Entities { get; set; }
public UserModel User { get; set; }
public int TouchPointId { get; set; }
public string Description { get; set; }
public int EntityId { get; set; }
public DateTime Created_date{ get;set; }
}
これは2番目のクラスです:-
public partial class SurveyModel : BaseModel
{
public int Id { get; set; }
public int SelectedEntityId { get; set; }
public int SelectedEntityType { get; set; }
public int ParentEntityId { get; set; }
public bool IsMyProjects { get; set; }
public DateTime Created_date{ get;set; }
}
&これは一般的なクラスです
public partial class RecentInteractionsModel
{
public int ContactId { get; set; }
public List<TouchPointModel> TouchPoints { get; set; }
public List<SurveyModel> Surveys { get; set; }
public int EntityId { get; set; }
public int EntityTypeId { get; set; }
public int SelectedParentId { get; set; }
}
UIには、作成日に応じて最新のタッチポイントまたは調査を表示することになっています。