Пример #1
0
 public CommentsController(IUsersService users, ICommentService comments, IHomeService homes, INeedService needs)
     : base(users)
 {
     this.comments = comments;
     this.homes = homes;
     this.needs = needs;
 }
Пример #2
0
 public ManageController(
     IUsersService users, 
     IChildService children, 
     IGiftService gifts, 
     ICategoryService categories, 
     INeedService needs,
     InMemoryCache cache)
     : base(users)
 {
     this.children = children;
     this.gifts = gifts;
     this.categories = categories;
     this.needs = needs;
     this.cache = cache;
 }
Пример #3
0
 public NeedController(IUsersService users, INeedService needs, IDropDownListPopulator populator)
     : base(users)
 {
     this.needs = needs;
     this.populator = populator;
 }
Пример #4
0
 public NeedsController(IUsersService users, INeedService needs)
     : base(users)
 {
     this.needs = needs;
 }