コード例 #1
0
 public void AddPaymentType(ApiPaymentTypeResponseModel item)
 {
     if (!this.PaymentTypes.Any(x => x.Id == item.Id))
     {
         this.PaymentTypes.Add(item);
     }
 }
コード例 #2
0
        public virtual ApiPaymentTypeRequestModel MapResponseToRequest(
            ApiPaymentTypeResponseModel response)
        {
            var request = new ApiPaymentTypeRequestModel();

            request.SetProperties(
                response.Name);
            return(request);
        }
コード例 #3
0
        public virtual ApiPaymentTypeResponseModel MapRequestToResponse(
            int id,
            ApiPaymentTypeRequestModel request)
        {
            var response = new ApiPaymentTypeResponseModel();

            response.SetProperties(id,
                                   request.Name);
            return(response);
        }