public HomeController(IBrochureRepository br,
                       IGuestBookRepository gbr,
                       IOptionsProductRepository opr)
 {
     BrochureRepository       = br;
     GuestBookRepository      = gbr;
     OptionsProductRepository = opr;
 }
Example #2
0
 public BrochureService(IBrochureRepository brochureRepository)
 {
     _brochureRepository = brochureRepository;
 }
Example #3
0
 public BrochureController(IBrochureRepository br, IOptionsProductRepository opr, IEventLogRepository elr)
 {
     BrochureRepository       = br;
     OptionsProductRepository = opr;
     LogRepository            = elr;
 }