-
Notifications
You must be signed in to change notification settings - Fork 2
Добавить эндпойнт "Сумма прописью" #26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from 5 commits
105975f
23db4d5
c99a752
3f9d9b5
52b79b0
ea96d72
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,26 @@ | ||
| using System.Runtime.Serialization; | ||
|
|
||
| namespace Morpher.WebService.V3.Russian | ||
| { | ||
| [DataContract] | ||
| public class Propis | ||
| { | ||
| [DataMember] | ||
| public string propis1 { get; set; } | ||
|
||
|
|
||
| [DataMember] | ||
| public string propis2 { get; set; } | ||
|
||
|
|
||
| [DataMember] | ||
| public string propis3 { get; set; } | ||
|
|
||
| [DataMember] | ||
| public string amount { get; set; } | ||
|
|
||
| [DataMember] | ||
| public string currency { get; set; } | ||
|
|
||
| [DataMember] | ||
| public string cents { get; set; } | ||
| } | ||
| } | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
А обработка ошибок? Что если сервис вернет ошибку 400? Нужно преобразовать ее в известное исключение.