Model.Blog.Blog C# (CSharp) Méthode

Blog() public méthode

public Blog ( ) : System
Résultat System
    	public Blog()
    	{
    		Tags = new HashSet<Tag>();
    		Users = new HashSet<User>();
    		Posts = new HashSet<Post>();
			SecurityKey = Guid.NewGuid();
		}
Blog