예제 #1
0
        public CalculateLogistis(ICountryDeliverablesService countryDeliverableSevice,
                                 ICountryPriceService countryPriceService,
                                 IUnitsService unitsService

                                 )
        {
            _countryDeliverableSevice = countryDeliverableSevice;
            _countryPriceService      = countryPriceService;
            _unitsService             = unitsService;
        }
예제 #2
0
 public CalculateLogistis()
 {
     _countryDeliverableSevice = new CountryDeliverablesService();
     _countryPriceService      = new CountryPriceService();
     _unitsService             = new UnitsService();
 }