public UserPaymentProfileV1Controller(ICookieManager cookieManager, IUserPaymentProfileService UserPaymentProfileService, IGetUserPaymentProfileCollectionMapper getUserPaymentProfileCollectionMapper, IGetUserPaymentProfileMapper getUserPaymentProfileToMapper, IDeleteUserPaymentProfileMapper deleteUserPaymentProfileMapper, IPatchUserPaymentProfileMapper patchUserPaymentProfileMapper)
     : base(cookieManager)
 {
     this.UserPaymentProfileService             = UserPaymentProfileService;
     this.getUserPaymentProfileToMapper         = getUserPaymentProfileToMapper;
     this.getUserPaymentProfileCollectionMapper = getUserPaymentProfileCollectionMapper;
     this.deleteUserPaymentProfileMapper        = deleteUserPaymentProfileMapper;
     this.patchUserPaymentProfileMapper         = patchUserPaymentProfileMapper;
 }
 public GetUserPaymentProfileCollectionMapper(IGetUserPaymentProfileMapper getUserPaymentProfileMapper, IObjectToObjectMapper objectToObjectMapper, IUrlHelper UrlHelper)
 {
     this.GetUserPaymentProfileMapper = getUserPaymentProfileMapper;
     this.ObjectToObjectMapper        = objectToObjectMapper;
     this.UrlHelper = UrlHelper;
 }
 public PostBrandMapper(IObjectToObjectMapper objectToObjectMapper, IGetUserPaymentProfileMapper GetBrandMapper)
 {
     this.ObjectToObjectMapper = objectToObjectMapper;
     this.GetBrandMapper       = GetBrandMapper;
 }