-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDynamicTopicViewModelLookupService.cs
29 lines (25 loc) · 1.48 KB
/
DynamicTopicViewModelLookupService.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*==============================================================================================================================
| Author Ignia, LLC
| Client Ignia, LLC
| Project Topics Library
\=============================================================================================================================*/
namespace OnTopic.Lookup {
/*============================================================================================================================
| CLASS: DYNAMIC TOPIC VIEW MODEL LOOKUP SERVICE
\---------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// The <see cref="DynamicTopicViewModelLookupService"/> will search all assemblies for <see cref="Type"/>s that end with
/// "TopicViewModel"
/// </summary>
public class DynamicTopicViewModelLookupService : DynamicTypeLookupService {
/*==========================================================================================================================
| CONSTRUCTOR
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Establishes a new instance of a <see cref="DynamicTopicLookupService"/>.
/// </summary>
public DynamicTopicViewModelLookupService() : base(
t => t.Name.EndsWith("ViewModel", StringComparison.OrdinalIgnoreCase)
) { }
} //Class
} //Namespace