public class Area // Район
{
public int Id { get; set; }
public string Name { get; set; }
public int RegionId { get; set; }
public virtual Region Region {get; set;}
public byte[] Map { get; set; }
}
public class Region // Область
{
public int Id { get; set; }
public string Name { get; set; }
public byte[] Map { get; set; }
}
public class Area // Район
{
[Key]
public int AreaId { get; set; }
public string Name { get; set; }
public int RegionId { get; set; }
[ForeignKey("RegionId")]
public virtual Region Region {get; set;}
public byte[] Map { get; set; }
}
public class Region // Область
{
[Key]
public int RegionId { get; set; }
public string Name { get; set; }
public byte[] Map { get; set; }
}
системник стоит на невысоких ножках на ковре и промежуток совсем небольшой.
function bookmark(a) {
title=document.title;
url=document.location;
try {
window.sidebar.addPanel(title, url, "");
} catch (e) {
if (window.opera && window.print || typeof(window.sidebar)=="object") { // Opera || Mozilla
a.rel="sidebar";
a.title=title;
a.url=url;
a.href=url;
return true;
} else if(document.all) { // Internet Explorer
window.external.AddFavorite(url, title);
return true;
} else {
alert('Нажмите Ctrl+D (Cmd+D на MacOS), чтобы добавить страницу в Избранное');
}
}
}