/// <summary>
 /// Constructor
 /// </summary>
 public MVCForumAPI(IMemberAPI memberAPI, IPostAPI postAPI, ITopicAPI topicAPI, ICategoryAPI categoryAPI)
 {
     Member   = memberAPI;
     Post     = postAPI;
     Topic    = topicAPI;
     Category = categoryAPI;
 }
예제 #2
0
 /// <summary>
 /// Constructor
 /// </summary>
 public MVCForumAPI(IMemberAPI memberAPI, IPostAPI postAPI, ITopicAPI topicAPI, ICategoryAPI categoryAPI)
 {
     Member = memberAPI;
     Post = postAPI;
     Topic = topicAPI;
     Category = categoryAPI;
 }
예제 #3
0
 public CategoryViewComponent(ICategoryAPI categoryApiClient)
 {
     _categoryApiClient = categoryApiClient;
 }