예제 #1
0
 public MarketingService(RequestContext c,
                         PromotionRepository promotions)
 {
     context    = c;
     Promotions = promotions;
 }
예제 #2
0
 public static MarketingService InstantiateForDatabase(RequestContext c)
 {
     return(new MarketingService(c, PromotionRepository.InstantiateForDatabase(c)));
 }