Exemplo n.º 1
0
 internal static short GetYakeenCountryCode(string twoLetterCountryCode)
 {
     if (CountryMap.ContainsKey(twoLetterCountryCode))
     {
         return(CountryMap[twoLetterCountryCode]);
     }
     return(1);
 }
Exemplo n.º 2
0
 private void TryFillCountry(ExchangeAddressDetail detail, AddressDetail addressDetail)
 {
     if (string.IsNullOrEmpty(detail.CountryName) || addressDetail.CountryId != Guid.Empty)
     {
         return;
     }
     if (CountryMap.ContainsKey(detail.CountryName))
     {
         addressDetail.CountryId = CountryMap[detail.CountryName];
     }
 }
Exemplo n.º 3
0
        public async Task <IEnumerable <Airport> > GetAllEuropeanAirportsAsyncByCountry(string country)
        {
            var airportFeedItems = await _feedRepository.GetEuropeanAirportsAsync();

            airportFeedItems = airportFeedItems.Where(
                c => c.CountryIsoCode.Equals(CountryMap.GetCountryCode(country), StringComparison.OrdinalIgnoreCase));

            var airports = _mapper.Map <IEnumerable <Airport> >(airportFeedItems).ToList();

            SortAirports(airports);

            return(airports);
        }
Exemplo n.º 4
0
        private void PopulateViewBags()
        {
            //Countries and Provinces
            List <CountryModel> lstCountries = new List <CountryModel>();

            lstCountries.Add(new CountryModel
            {
                Id   = 1111,
                Name = "Country"
            }
                             );


            lstCountries.AddRange(CountryMap.Map(_repoCountry.GetList().ToList()));

            ViewBag.Countries = new SelectList(lstCountries, "Name", "Name");

            List <ProvinceModel> lstProvinces = new List <ProvinceModel>();

            lstProvinces.Add(new ProvinceModel
            {
                Id   = 0,
                Name = "State"
            });

            ViewBag.Provinces = new SelectList(lstProvinces, "Id", "Name");

            List <YearModel> lstYears = new List <YearModel>();


            List <DisciplineModel> lstDisciplines = new List <DisciplineModel>();

            lstDisciplines.Add(new DisciplineModel
            {
                Id             = 1111,
                DisciplineName = "Discipline",
                LanguageId     = CurrentLanguage.Id
            });

            lstDisciplines.AddRange(DisciplineMap.Map(_repoDiscipline.GetList(x => x.LanguageId == CurrentLanguage.Id).ToList()));

            ViewBag.Disciplines = new SelectList(lstDisciplines, "Id", "DisciplineName");

            List <SortByModel> lstSort = new List <SortByModel>();

            lstSort.Add(new SortByModel
            {
                Id      = 0,
                OrderBy = "Sort By"
            }

                        );

            lstSort.Add(new SortByModel
            {
                Id      = 1,
                OrderBy = "Ascending"
            });

            lstSort.Add(new SortByModel
            {
                Id      = 2,
                OrderBy = "Descending"
            });

            ViewBag.SortBy = new SelectList(lstSort, "Id", "OrderBy");
        }
Exemplo n.º 5
0
        public override void OnActionExecuting(ActionExecutingContext filterContext)
        {
            var _repCountry  = DependencyResolver.Current.GetService <ICountryRepository>();
            var _repCategory = DependencyResolver.Current.GetService <ICategoryRepository>();
            var _repYear     = DependencyResolver.Current.GetService <IYearRepository>();
            var _repMonth    = DependencyResolver.Current.GetService <IMonthRepository>();

            //Countries and Provinces
            List <CountryModel> lstCountries = new List <CountryModel>();

            lstCountries.Add(new CountryModel
            {
                Id   = 0,
                Name = "Country"
            });


            lstCountries.AddRange(CountryMap.Map(_repCountry.GetList().ToList()));

            List <ProvinceModel> lstProvinces = new List <ProvinceModel>();

            lstProvinces.Add(new ProvinceModel
            {
                Id   = 0,
                Name = "State"
            });



            ///Categories
            ///
            List <CategoryModel> lstCategories = new List <CategoryModel>();

            lstCategories.Add(new CategoryModel
            {
                Id           = 0,
                CategoryName = "Categories",
                LanguageId   = 1
            });

            List <YearModel> lstYears = new List <YearModel>();

            lstCategories.AddRange(CategoryMap.Map(_repCategory.GetList(x => x.LanguageId == 1).ToList()));

            ///Years

            lstYears.Add(new YearModel
            {
                Id         = 0,
                Year       = "Years",
                LanguageId = 1
            });

            lstYears.AddRange(YearMap.Map(_repYear.GetList(x => x.LanguageId == 1).ToList()));

            List <MonthModel> lstMonths = new List <MonthModel>();

            lstMonths.Add(new MonthModel
            {
                Id         = 0,
                Month      = "Months",
                LanguageId = 1
            });

            lstMonths.AddRange(MonthMap.Map(_repMonth.GetList(x => x.LanguageId == 1).ToList()));


            List <DisciplineModel> lstDisciplines = new List <DisciplineModel>();

            lstDisciplines.Add(new DisciplineModel
            {
                Id             = 0,
                DisciplineName = "Discipline",
                LanguageId     = 1
            });


            List <SortByModel> lstSort = new List <SortByModel>();

            lstSort.Add(new SortByModel
            {
                Id      = 0,
                OrderBy = "Sort By"
            }

                        );

            lstSort.Add(new SortByModel
            {
                Id      = 1,
                OrderBy = "Ascending"
            });

            lstSort.Add(new SortByModel
            {
                Id      = 2,
                OrderBy = "Descending"
            });

            List <SexModel> lstSex = new List <SexModel>();

            lstSex.Add(new SexModel
            {
                Id  = 0,
                Sex = "Sex"
            });

            lstSex.Add(new SexModel
            {
                Id  = 1,
                Sex = "Male"
            });

            lstSex.Add(new SexModel
            {
                Id  = 2,
                Sex = "Female"
            });

            var controller = (filterContext.Controller as LeonniApplicationController);

            if (controller != null)
            {
                controller.Categories  = new SelectList(lstCategories, "Id", "CategoryName");
                controller.Countries   = new SelectList(lstCountries, "Name", "Name");
                controller.Years       = new SelectList(lstYears, "Id", "Year");
                controller.Months      = new SelectList(lstMonths, "Id", "Month");
                controller.Provinces   = new SelectList(lstProvinces, "Id", "Name");
                controller.Sorts       = new SelectList(lstSort, "Id", "OrderBy");
                controller.Disciplines = new SelectList(lstDisciplines, "Id", "DisciplineName");
                controller.Sexs        = new SelectList(lstSex, "Sex", "Sex");
            }
            else
            {
                throw new Exception("Always derieve controller from LeonniApplicationController");
            }
            base.OnActionExecuting(filterContext);
        }
Exemplo n.º 6
0
        private void PopulateViewBags()
        {
            //Countries and Provinces
            List <CountryModel> lstCountries = new List <CountryModel>();

            lstCountries.Add(new CountryModel
            {
                Id   = 1111,
                Name = "Country"
            }
                             );


            lstCountries.AddRange(CountryMap.Map(_repCountry.GetList().ToList()));

            ViewBag.Countries = new SelectList(lstCountries, "Name", "Name");

            List <ProvinceModel> lstProvinces = new List <ProvinceModel>();

            lstProvinces.Add(new ProvinceModel
            {
                Id   = 0,
                Name = "State"
            });

            ViewBag.Provinces = new SelectList(lstProvinces, "Id", "Name");


            ///Categories
            ///
            List <CategoryModel> lstCategories = new List <CategoryModel>();

            lstCategories.Add(new CategoryModel
            {
                Id           = 1111,
                CategoryName = "Categories",
                LanguageId   = CurrentLanguage.Id
            });

            List <YearModel> lstYears = new List <YearModel>();

            lstCategories.AddRange(CategoryMap.Map(_repCategory.GetList(x => x.LanguageId == CurrentLanguage.Id).ToList()));

            ViewBag.Categories = new SelectList(lstCategories, "Id", "CategoryName");

            ///Years

            lstYears.Add(new YearModel
            {
                Id         = 0,
                Year       = "Years",
                LanguageId = CurrentLanguage.Id
            });

            lstYears.AddRange(YearMap.Map(_repYear.GetList(x => x.LanguageId == CurrentLanguage.Id).ToList()));

            ViewBag.Years = new SelectList(lstYears, "Id", "Year");

            List <MonthModel> lstMonths = new List <MonthModel>();

            lstMonths.Add(new MonthModel
            {
                Id         = 1111,
                Month      = "Months",
                LanguageId = CurrentLanguage.Id
            });

            lstMonths.AddRange(MonthMap.Map(_repMonth.GetList(x => x.LanguageId == CurrentLanguage.Id).ToList()));

            ViewBag.Months = new SelectList(lstMonths, "Id", "Month");

            List <DisciplineModel> lstDisciplines = new List <DisciplineModel>();

            lstDisciplines.Add(new DisciplineModel
            {
                Id             = 1111,
                DisciplineName = "Discipline",
                LanguageId     = CurrentLanguage.Id
            });

            ViewBag.Disciplines = new SelectList(lstDisciplines, "Id", "DisciplineName");

            List <SortByModel> lstSort = new List <SortByModel>();

            lstSort.Add(new SortByModel
            {
                Id      = 0,
                OrderBy = "Sort By"
            }

                        );

            lstSort.Add(new SortByModel
            {
                Id      = 1,
                OrderBy = "Ascending"
            });

            lstSort.Add(new SortByModel
            {
                Id      = 2,
                OrderBy = "Descending"
            });

            ViewBag.SortBy = new SelectList(lstSort, "Id", "OrderBy");
        }