Пример #1
0
 public BLCustomer(ISymmEncryption encryptor, IDACustomer dataAccess, int userID)
 {
     _encryptor  = encryptor;
     _dataAccess = dataAccess;
     _userID     = userID;
 }
 private void InitializeDependencies()
 {
     _daCustomer     = new DACustomerSQLLite();
     _symmEncryption = new SymmEncryption();
 }