Exemple #1
0
        public static dto.Cities ToDTO(this bll.Cities bll)
        {
            dto.Cities dto = new dto.Cities();

            dto.Id        = bll.Id;
            dto.City      = bll.City;
            dto.Code      = bll.Code;
            dto.CountryId = bll.Country.Id;

            return(dto);
        }
Exemple #2
0
        //public static bll.Cities toBLL(this dto.Cities dto)
        //{
        //    bll.Cities bll = new bll.Cities();

        //    bll.Id = dto.Id;
        //    bll.City = dto.City;
        //    bll.Code = dto.Code;
        //    // To modify and user DI instead of loading DB each time.
        //    CountryService cs = new CountryService();
        //    bll.Country = cs.Get(dto.CountryId);

        //    return bll;
        //}

        public static bll.Cities ToBLL(this dto.Cities dto)
        {
            bll.Cities bll = new bll.Cities(dto.CountryId);

            bll.Id   = dto.Id;
            bll.City = dto.City;
            bll.Code = dto.Code;
            //bll.Country = country.Get(dto.CountryId);

            return(bll);
        }