コード例 #1
0
 public CustomerRepository(ICustomerCommandText commandText, DbConnection connection, ICustomerHelper customerHelper) : base(connection)
 {
     _commandText    = commandText;
     _customerHelper = customerHelper;
 }
コード例 #2
0
 public CustomerController()
 {
     _iCustomerHelper = DependencyResolver.GetCustomerInstance();
     _iClaimHelper    = DependencyResolver.GetClaimInstance();
 }
コード例 #3
0
 public CustomerFilter(ICustomerHelper customerHelper, IUserHelper userHelper)
 {
     _customerHelper = customerHelper;
     _userHelper     = userHelper;
 }