コード例 #1
0
 public UsersController(IUserList userList, ICommand <UserAddEditModel> command, IQueryWithParameters <UserAddEditModel, UserByIdParameter> userGetQuery,
                        ICommand <int> deleteCommand, IQueryWithParameters <QueryResult <UserListPaginationModel>, UserListParameter> userListQuery)
 {
     _userList      = userList;
     _command       = command;
     _userGetQuery  = userGetQuery;
     _deleteCommand = deleteCommand;
     _userListQuery = userListQuery;
 }
コード例 #2
0
 public EmployerProfileController(ICommand <EmployeerProfileModel> command,
                                  IQueryWithParameters <QueryResult <EmployeerProfileModel>, EmployerProfileParameters> query)
 {
     _command = command;
     _query   = query;
 }
コード例 #3
0
 public JobSeekerProfileController(IQueryWithParameters <QueryResult <JobSeekerProfileModel>, JobSeekerProfileParameters> query)
 {
     _query = query;
 }