コード例 #1
0
 public ServiceManager(
     IBusinessService business,
     IRoleService role,
     IUserService user,
     IAccountTypeService accountType,
     IGroupService group,
     IAccountService account,
     IClientService client,
     IRelationshipService relationship,
     IUserActivityService userActivity,
     IMenuService menuService,
     IReportService reportService,
     ITransactionCodeService transactionCode,
     ITransactionTypeService transactionType,
     ITransactionService transaction)
 {
     this.Business        = business;
     this.Role            = role;
     this.User            = user;
     this.AccountType     = accountType;
     this.Group           = group;
     this.Account         = account;
     this.Client          = client;
     this.Relationship    = relationship;
     this.UserActivity    = userActivity;
     this.Menu            = menuService;
     this.Report          = reportService;
     this.TransactionCode = transactionCode;
     this.TransactionType = transactionType;
     this.Transaction     = transaction;
 }
コード例 #2
0
 public TransactionCodeController(ITransactionCodeService transactionCodeService)
 {
     _transactionCodeService = transactionCodeService;
 }