Exemple #1
0
 public CustomerManager(ICustomerManagerImpl impl)
 {
     Impl = impl;
 }
Exemple #2
0
 public LoginManager(ILoginManagerImpl impl, ICustomerManagerImpl cmi)
 {
     Impl = impl;
     CMgr = new CustomerManager(cmi);
 }