public Organisation(PortFreightContext context,
                     IEntityToViewModelMapper entityToViewModelMapper,
                     IOrganisationSearch organisationSearch)
 {
     _context = context;
     _entityToViewModelMapper = entityToViewModelMapper;
     _organisationSearch      = organisationSearch;
 }
 public Msd3AgentDataService(PortFreightContext context,
                             IEntityToViewModelMapper entityToViewModelMapper,
                             UserManager <PortFreightUser> userManager)
 {
     _context = context;
     _entityToViewModelMapper = entityToViewModelMapper;
     _userManager             = userManager;
 }
Example #3
0
 public MainPresenter()
 {
     _pillMomentRepository       = new PillMomentRepository();
     _entityToViewModelConverter = new EntityToViewModelMapper();
 }
 public OrganisationSearch(PortFreightContext context, IEntityToViewModelMapper entityToViewModelMapper)
 {
     _context = context;
     _entityToViewModelMapper = entityToViewModelMapper;
 }