Exemplo n.º 1
0
 public ImageController(IImageService service, IGalleryService galleryService, IMapper mapper, IPagingSupport <Image> pagingSupport)
 {
     _service        = service;
     _galleryService = galleryService;
     _mapper         = mapper;
     _pagingSupport  = pagingSupport;
 }
 public BookingController(IBookingService service, IAccountService accountService, IMapper mapper, IPagingSupport <Booking> pagingSupport, IPushNotificationService pushNotificationService)
 {
     _service                 = service;
     _accountService          = accountService;
     _mapper                  = mapper;
     _pagingSupport           = pagingSupport;
     _pushNotificationService = pushNotificationService;
 }
Exemplo n.º 3
0
 public FeedBackController(IFeedBackService service, IMapper mapper, IPagingSupport <FeedBack> pagingSupport, IGalleryService galleryService, IImageService imageService, IUploadFileService uploadFileService)
 {
     _service           = service;
     _mapper            = mapper;
     _pagingSupport     = pagingSupport;
     _galleryService    = galleryService;
     _imageService      = imageService;
     _uploadFileService = uploadFileService;
 }
Exemplo n.º 4
0
 public ServiceController(IBeautyServicesService service, IMapper mapper, IPagingSupport <Service> pagingSupport, IFeedBackService feedbackService, IGalleryService galleryService, IImageService imageService, IUploadFileService uploadFileService)
 {
     _service           = service;
     _mapper            = mapper;
     _pagingSupport     = pagingSupport;
     _feedbackService   = feedbackService;
     _galleryService    = galleryService;
     _imageService      = imageService;
     _uploadFileService = uploadFileService;
 }
 public AccountController(IAccountService accountService, IFeedBackService feedBackService, IImageService imageService, IGalleryService galleryService, IUploadFileService uploadFileService, IMapper mapper, IPagingSupport <Account> pagingSupport)
 {
     _accountService    = accountService;
     _feedBackService   = feedBackService;
     _imageService      = imageService;
     _galleryService    = galleryService;
     _uploadFileService = uploadFileService;
     _mapper            = mapper;
     _pagingSupport     = pagingSupport;
 }
Exemplo n.º 6
0
 public CommonResourceRepository(IPyroDbContext Context,
                                 IPrimaryServiceRootCache IPrimaryServiceRootCache,
                                 IIndexSetterFactory <ResCurrentType, ResIndexStringType, ResIndexTokenType, ResIndexUriType, ResIndexReferenceType, ResIndexQuantityType, ResIndexDateTimeType> IIndexSetterFactory,
                                 IServiceSearchParameterCache IServiceSearchParameterCache,
                                 IFhirReleaseCache IFhirReleaseCache,
                                 IDatabaseOperationOutcomeFactory IDatabaseOperationOutcomeFactory,
                                 IPagingSupport IPagingSupport)
     : base(Context, IPrimaryServiceRootCache)
 {
     this.IIndexSetterFactory              = IIndexSetterFactory;
     this.IServiceSearchParameterCache     = IServiceSearchParameterCache;
     this.IFhirReleaseCache                = IFhirReleaseCache;
     this.IDatabaseOperationOutcomeFactory = IDatabaseOperationOutcomeFactory;
     this.IPagingSupport = IPagingSupport;
 }
Exemplo n.º 7
0
 public GalleryController(IGalleryService service, IMapper mapper, IPagingSupport <Gallery> pagingSupport)
 {
     _service       = service;
     _mapper        = mapper;
     _pagingSupport = pagingSupport;
 }
Exemplo n.º 8
0
 public AddressController(IAddressService service, IMapper mapper, IPagingSupport <Address> pagingSupport)
 {
     _service       = service;
     _mapper        = mapper;
     _pagingSupport = pagingSupport;
 }
 public ServiceTypeController(IServiceTypeService service, IMapper mapper, IPagingSupport <ServiceType> pagingSupport)
 {
     _service       = service;
     _mapper        = mapper;
     _pagingSupport = pagingSupport;
 }
Exemplo n.º 10
0
 public BookingDetailController(IBookingDetailService service, IMapper mapper, IPagingSupport <BookingDetail> pagingSupport)
 {
     _service       = service;
     _mapper        = mapper;
     _pagingSupport = pagingSupport;
 }