Esempio n. 1
0
        public StoreService()
        {
            string Provider = "System.Data.SqlClient";
            string ConnectionString = ConfigurationManager.ConnectionStrings["active"].ConnectionString;

            AL = new ImplDbAccessLayer(ConnectionString, Provider);
            SA = new ImplIStoreAccess(AL);
        }
Esempio n. 2
0
 public FormManager(IDBAccessLayer dBAccessLayer)
 {
     _dBAccessLayer = dBAccessLayer;
     Console.WriteLine("Form Manager Service Initialized");
 }
Esempio n. 3
0
 public ImplIStoreAccess(IDBAccessLayer _AL){
     AL = _AL;
 }