public ActivityLocationDto MapToModel(ActivityLocation entity)
        {
            var result = new ActivityLocationDto
                         {
                             Id = entity.Id,
                             Abbreviation = entity.Abbreviation,
                             Name = entity.Name,
                             Code = entity.Code,
                             Latitude = entity.Latitude,
                             Longititude = entity.Longitude,
                             CountryName = entity.CountryName
                         };

            return result;
        }
 public ActivityLocationDto RemapModel(ActivityLocationDto model)
 {
     throw new System.NotImplementedException();
 }
 public ActivityLocation MapToEntity(ActivityLocationDto model)
 {
     throw new System.NotImplementedException();
 }