public CommentContainer(IConnectionString conn)
 {
     commentContainerRepository = new Commentrepository(new CommentSQL(conn));;
     userContainer = new UserContainer(conn);
 }
 public PostContainer(IConnectionString conn)
 {
     postrepository   = new Postrepository(new PostSQL(conn));
     commentContainer = new CommentContainer(conn);
     userContainer    = new UserContainer(conn);
 }
Beispiel #3
0
 public ForumContainer(IConnectionString conn)
 {
     forumrepository = new Forumrepository(new ForumSQL(conn));
     postContainer   = new PostContainer(conn);
     userContainer   = new UserContainer(conn);
 }