예제 #1
0
 public VotationBusiness(IUserData userDate, IVotationData votationData, IRestaurantData restaurantData,
                         IStoryBusiness storyBusiness, IConfiguration configuration)
 {
     _userDate       = userDate;
     _votationData   = votationData;
     _restaurantData = restaurantData;
     _storyBusiness  = storyBusiness;
     _configuration  = configuration;
 }
 public RestaurantBusiness(IRestaurantData restaurantData, IStoryBusiness storyBusiness)
 {
     _restaurantData = restaurantData;
     _storyBusiness  = storyBusiness;
 }