예제 #1
0
 public UsersController(IStudentsService students, IPaymentsService payments, ICurrentUserService user, IOutstandingPaymentsService outStandingPayments)
 {
     _students            = students;
     _payments            = payments;
     _user                = user;
     _outStandingPayments = outStandingPayments;
 }
예제 #2
0
        public UserManagementController(

            IStudentsService students,
            IPaymentsService payments,
            IOutstandingPaymentsService outStandingPayments,
            IStatisticsService statistics
            )
        {
            _students            = students;
            _payments            = payments;
            _outStandingPayments = outStandingPayments;
            _statistics          = statistics;
        }