using System;
using Humans;
using Hobies;
using Web.Contant;
namespace me.Profile
{
public class Nadav_Rotenberg : Technologist
{
string Email
{
get
{
}
}
string Facebook
{
get
{
}
}
string Twitter
{
get
{
return "nadav144";
}
}
public Nadav_Rotenberg()
{
DateTime born = DateTime.Parse("10/08/1987");
List<Hobby> hobbies = new List<Hobby>();
hobbies.Add(new Hobby("Astronomy"));
hobbies.Add(new Hobby("Photography"));
}
}
}