Example #1
0
 public static DAL.StoreLocation StoreLocationBackendToDal(Backend.StoreLocation d)
 {
     DAL.StoreLocation ans = new DAL.StoreLocation();
     ans.country   = d.country;
     ans.city      = d.city;
     ans.street    = d.street;
     ans.latitude  = d.latitude;
     ans.longitude = d.longitude;
     return(ans);
 }
Example #2
0
        ///////////////////////////////////////////////// Location CONVERTION
        public static List <Backend.StoreLocation> StoreLocationDalToBackendList(List <DAL.StoreLocation> StoreLocationSqlDB)
        {
            List <Backend.StoreLocation> list = new List <Backend.StoreLocation>();

            Backend.StoreLocation temp;
            foreach (DAL.StoreLocation d in StoreLocationSqlDB)
            {
                temp = new Backend.StoreLocation(d.country, d.city, d.street, d.latitude, d.longitude);
                list.Add(temp);
            }
            return(list);
        }