Advertisement
Guest User

Untitled

a guest
Feb 25th, 2020
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.35 KB | None | 0 0
  1. namespace ConsoleApp1.controller
  2. {
  3.     class Publishing
  4.     {
  5.         public string ConnectionString { get; set; }
  6.            
  7.         public Publishing(string connectionString)
  8.         {
  9.             ConnectionString = connectionString;
  10.             Books = new services.SoldBooks(this);
  11.         }
  12.  
  13.         public services.SoldBooks Books;
  14.     }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement