public FoodTruckService(ILoggerFactory loggerFactory, IUnitOfWork uow, IDateTimeProvider dateTimeProvider,
                         IFoodTruckRepository foodTruckRepository, ITagRepository tagRepository, ISocialMediaPlatformRepository socialMediaPlatformRepository)
     : base(loggerFactory, uow)
 {
     _dateTimeProvider              = dateTimeProvider;
     _foodTruckRepository           = foodTruckRepository;
     _tagRepository                 = tagRepository;
     _socialMediaPlatformRepository = socialMediaPlatformRepository;
 }
Beispiel #2
0
 public SocialMediaPlatformService(ISocialMediaPlatformRepository repository)
 {
     _socialMediaPlatformRepository = repository;
 }