Exemplo n.º 1
0
 public MentorDTOService(IStudentRepository studentsRepository,
                         IMentorRepository mentorRepository,
                         IObjectToObjectMapper mapper)
     : base(mentorRepository, mapper)
 {
     this.studentsRepository = studentsRepository;
 }
Exemplo n.º 2
0
 public SubmissionDTOService(ISubmitFileDTOService submitFileService,
                             ISubmissionRepository repository,
                             IObjectToObjectMapper mapper)
     : base(repository, mapper)
 {
     this.submitFileService = submitFileService;
 }
 public GetWishListLineCollectionMapper(
     IUrlHelper urlHelper,
     IObjectToObjectMapper objectToObjectMapper,
     IGetWishListLineMapper wishListLineMapper)
 {
     this.UrlHelper             = urlHelper;
     this.ObjectToObjectMapper  = objectToObjectMapper;
     this.GetWishListLineMapper = wishListLineMapper;
 }
Exemplo n.º 4
0
 public WorkDaysControllerService(IWorkDayDTOService workDayService,
                                  IStudentDTOService studentService,
                                  IAttendanceDTOService attendanceService,
                                  IObjectToObjectMapper mapper,
                                  IViewFactory viewFactory,
                                  IDTOFactory dtoFactory)
 {
     this.attendanceService = attendanceService;
     this.studentService    = studentService;
     this.workDayService    = workDayService;
     this.mapper            = mapper;
     this.viewModelFactory  = viewFactory;
     this.dtoFactory        = dtoFactory;
 }
 public GetCartMapper_Brasseler(ICurrencyFormatProvider currencyFormatProvider, IGetCountryMapper getCountryMapper, IGetStateMapper getStateMapper, IGetBillToMapper getBillToMapper, IGetShipToMapper getShipToMapper, IGetCartLineCollectionMapper getCartLineCollectionMapper, IObjectToObjectMapper objectToObjectMapper, IUrlHelper urlHelper, IRouteDataProvider routeDataProvider, ITranslationLocalizer translationLocalizer, IUnitOfWorkFactory unitOfWork)
     : base(currencyFormatProvider, getBillToMapper, getShipToMapper, getCartLineCollectionMapper, objectToObjectMapper, urlHelper, routeDataProvider, translationLocalizer)
 {
     this.CurrencyFormatProvider      = currencyFormatProvider;
     this.GetBillToMapper             = getBillToMapper;
     this.GetShipToMapper             = getShipToMapper;
     this.GetCartLineCollectionMapper = getCartLineCollectionMapper;
     this.ObjectToObjectMapper        = objectToObjectMapper;
     this.UrlHelper            = urlHelper;
     this.RouteDataProvider    = routeDataProvider;
     this.TranslationLocalizer = translationLocalizer;
     this.GetCountryMapper     = getCountryMapper;
     this.GetStateMapper       = getStateMapper;
     this.UnitOfWork           = unitOfWork.GetUnitOfWork();
 }
Exemplo n.º 6
0
 public AssignmentsControllerService(IAssignmentDTOService service,
                                     IMentorDTOService mentorService,
                                     IStudentDTOService studentService,
                                     IAssignmentFileDTOService fileService,
                                     ISubmissionDTOService submissionService,
                                     IObjectToObjectMapper mapper,
                                     IViewFactory viewFactory,
                                     IDTOFactory dtoFactory)
 {
     this.assignmentService = service;
     this.mentorService     = mentorService;
     this.studentService    = studentService;
     this.fileService       = fileService;
     this.submissionService = submissionService;
     this.mapper            = mapper;
     this.viewFactory       = viewFactory;
     this.dtoFactory        = dtoFactory;
 }
Exemplo n.º 7
0
 public AttendanceDTOService(IAttendanceRepository repository, IObjectToObjectMapper mapper) : base(repository, mapper)
 {
 }
Exemplo n.º 8
0
 public BenchEngine(IObjectToObjectMapper mapper, string mode)
 {
     _mapper = mapper;
     _mode   = mode;
 }
Exemplo n.º 9
0
 public PatchUserPaymentProfileMapper(IObjectToObjectMapper objectToObjectMapper, IUrlHelper UrlHelper)
 {
     this.ObjectToObjectMapper = objectToObjectMapper;
     this.UrlHelper            = UrlHelper;
 }
Exemplo n.º 10
0
 public StudentDTOService(IStudentRepository repository, IObjectToObjectMapper mapper) : base(repository, mapper)
 {
 }
Exemplo n.º 11
0
 public GenericDTOService(IGenericRepository <TEntity, TKey> repository, IObjectToObjectMapper mapper)
 {
     this.currentEntityRepository = repository;
     this.mapper = mapper;
 }
 public PostBrandMapper(IObjectToObjectMapper objectToObjectMapper, IGetUserPaymentProfileMapper GetBrandMapper)
 {
     this.ObjectToObjectMapper = objectToObjectMapper;
     this.GetBrandMapper       = GetBrandMapper;
 }
 public GetUserPaymentProfileCollectionMapper(IGetUserPaymentProfileMapper getUserPaymentProfileMapper, IObjectToObjectMapper objectToObjectMapper, IUrlHelper UrlHelper)
 {
     this.GetUserPaymentProfileMapper = getUserPaymentProfileMapper;
     this.ObjectToObjectMapper        = objectToObjectMapper;
     this.UrlHelper = UrlHelper;
 }
Exemplo n.º 14
0
 public WorkDayDTOService(IWorkDayRepository repository,
                          IObjectToObjectMapper mapper)
     : base(repository, mapper)
 {
 }
Exemplo n.º 15
0
 public SubmitFileDTOService(ISubmitFileRepository repository,
                             IObjectToObjectMapper mapper)
     : base(repository, mapper)
 {
 }
 public GetInvoiceMapper_Brasseler(ICurrencyFormatProvider currencyFormatProvider, IUrlHelper urlHelper, IObjectToObjectMapper objectToObjectMapper, ITranslationLocalizer translationLocalizer) : base(currencyFormatProvider, urlHelper, objectToObjectMapper, translationLocalizer)
 {
 }
Exemplo n.º 17
0
 public AssignmentFileDTOService(IAssignmentFileRepository repository, IObjectToObjectMapper mapper) : base(repository, mapper)
 {
 }
Exemplo n.º 18
0
 public BenchEngine(IObjectToObjectMapper mapper, string mode)
 {
     _mapper = mapper;
     _mode = mode;
 }
Exemplo n.º 19
0
 public JournalDTOService(IJournalRepository repository, IObjectToObjectMapper mapper) : base(repository, mapper)
 {
 }