public AccountMemberController(IAccountMemberBL _service)
 {
     accountMemberService = _service;
 }
Пример #2
0
 public AccountController(IFinancialAccountBL _finAccService, IAccountMemberBL _accMemService)
 {
     financialAccountBL = _finAccService;
     accountMemberBL    = _accMemService;
 }