コード例 #1
0
ファイル: OrderService.cs プロジェクト: stylkyn/ess
 public OrderService()
 {
     _productSharedService      = new ProductSharedService();
     _userSharedService         = new UserSharedService();
     _mailingLibrary            = new MailingLibrary();
     _documentInvoiceRepository = new DocumentInvoiceRepository();
 }
コード例 #2
0
ファイル: UserService.cs プロジェクト: stylkyn/ess
 public UserService()
 {
     _cryptographyLibrary     = new CryptographyLibrary();
     _authentificationLibrary = new AuthentificationLibrary();
     _mailingLibrary          = new MailingLibrary();
     _userSharedService       = new UserSharedService();
 }