Example #1
0
 /// <summary>
 /// Запрос на предоставление информации об уплате | Фильтр "Время"
 /// </summary>
 /// <param name="paymentsKind">Тип запроса на предоставление информации</param>
 /// <param name="timeInterval">Временной интервал, за который запрашивается информация</param>
 /// <param name="beneficiary">ИНН и КПП получателя средств (кол-во объектов null, 1-10)</param>
 /// <param name="kbk">КБК (кол-во объектов null, 1-10)</param>
 /// <returns>CreateExportPaymentsRequest -> ObjectRequest | ExportPayments -> IdMessageSMEV</returns>
 public ExportPaymentsRequest CreateExportPaymentsRequest(ExportPaymentsKind paymentsKind, TimeIntervalType timeInterval, Beneficiary[] beneficiary = default, KBKType[] kbk = default)
 {
     return(new ExportPaymentsRequest(
                config: ExportRequestConfig,
                exportConditions: new PaymentsExportConditions(
                    kind: paymentsKind,
                    conditions: new TimeConditionsType(timeInterval, beneficiary, kbk)
                    )
                ));
 }
Example #2
0
 /// <summary>
 /// Запрос на предоставление информации об уплате | Фильтр "Платеж"
 /// </summary>
 /// <param name="paymentsKind">Тип запроса на предоставление информации</param>
 /// <param name="uip">УИП (кол-во объектов 1-100)</param>
 /// <returns>CreateExportPaymentsRequest -> ObjectRequest | ExportPayments -> IdMessageSMEV</returns>
 public ExportPaymentsRequest CreateExportPaymentsRequest(ExportPaymentsKind paymentsKind, UIP[] uip)
 {
     return(new ExportPaymentsRequest(
                config: ExportRequestConfig,
                exportConditions: new PaymentsExportConditions(
                    kind: paymentsKind,
                    conditions: new PaymentsConditionsType(uip)
                    )
                ));
 }
Example #3
0
 //TODO исправить
 /// <summary>
 /// Запрос на предоставление информации об уплате
 /// </summary>
 /// <param name="paymentsKind">Тип запроса на предоставление информации</param>
 /// <param name="payerInnOrId">Идентификатор плательщика (кол-во объектов 1-100)</param>
 /// <param name="timeInterval">Временной интервал, за который запрашивается информация</param>
 /// <param name="kbk">КБК (кол-во объектов null, 1-10)</param>
 /// <returns>CreateExportPaymentsRequest -> ObjectRequest | ExportPayments -> IdMessageSMEV</returns>
 public ExportPaymentsRequest CreateExportPaymentsRequest(ExportPaymentsKind paymentsKind, IPayerInnOrId[] payerInnOrId, TimeIntervalType timeInterval = default, KBKType[] kbk = default)
 {
     throw new NotImplementedException();
     //return new ExportPaymentsRequest(
     //    config: ExportRequestConfig(),
     //    exportConditions: new PaymentsExportConditions(
     //        kind: paymentsKind,
     //        conditions: new PayersConditionsType(payerInnOrId, timeInterval, kbk)
     //        )
     //    );
 }
Example #4
0
 /// <summary>
 /// Запрос на предоставление информации об уплате | Фильтр "Начисление"
 /// </summary>
 /// <param name="paymentsKind">Тип запроса на предоставление информации</param>
 /// <param name="uin">УИН (кол-во объектов 1-100)</param>
 /// <param name="timeInterval">Временной интервал, за который запрашивается информация</param>
 /// <returns>CreateExportPaymentsRequest -> ObjectRequest | ExportPayments -> IdMessageSMEV</returns>
 public ExportPaymentsRequest CreateExportPaymentsRequest(ExportPaymentsKind paymentsKind, SupplierBillIDType[] uin, TimeIntervalType timeInterval = default)
 {
     return(new ExportPaymentsRequest(
                config: ExportRequestConfig,
                exportConditions: new PaymentsExportConditions(
                    kind: paymentsKind,
                    conditions: new ChargesConditionsType(
                        supplierBillID: uin,
                        timeInterval: timeInterval
                        )
                    )
                ));
 }
Example #5
0
 /// <inheritdoc cref="CreateExportPaymentsRequest(ExportPaymentsKind, UIP[])"/>
 public string ExportPayments(ExportPaymentsKind paymentsKind, UIP[] uip)
 => ReadyRequest(CreateExportPaymentsRequest(paymentsKind, uip));
Example #6
0
 /// <summary/>
 public string ExportPayments(ExportPaymentsKind paymentsKind, IPayerInnOrId[] payerInnOrId, TimeIntervalType timeInterval = default, KBKType[] kbk = default)
 => ReadyRequest(CreateExportPaymentsRequest(paymentsKind, payerInnOrId, timeInterval, kbk));
Example #7
0
 /// <inheritdoc cref="CreateExportPaymentsRequest(ExportPaymentsKind, SupplierBillIDType[], TimeIntervalType)"/>
 public string ExportPayments(ExportPaymentsKind paymentsKind, SupplierBillIDType[] uin, TimeIntervalType timeInterval = default)
 => ReadyRequest(CreateExportPaymentsRequest(paymentsKind, uin, timeInterval));
Example #8
0
 /// <inheritdoc cref="CreateExportPaymentsRequest(ExportPaymentsKind, TimeIntervalType, Beneficiary[], KBKType[])"/>
 public string ExportPayments(ExportPaymentsKind paymentsKind, TimeIntervalType timeInterval, Beneficiary[] beneficiary = default, KBKType[] kbk = default)
 => ReadyRequest(CreateExportPaymentsRequest(paymentsKind, timeInterval, beneficiary, kbk));
 /// <remarks/>
 private PaymentsExportConditions(ExportPaymentsKind kind) => Kind = kind.ToString();