Advertisement
Guest User

Untitled

a guest
Jul 2nd, 2012
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.49 KB | None | 0 0
  1. [webmethod]
  2. public decimal faturasorgulama(string faturano, string musterino)
  3. {
  4.     // burda senin gonderdigin bilgilere gore veritabanindan musteri ile ilgili bilgiler cekiliyor.
  5.     // sonra sana geri donduruluyor.
  6.     decimal tutar = 115,35;
  7.     return tutar;
  8. }
  9.  
  10.  
  11. [webmethod]
  12. public bool faturaodeme(string faturano, string musterino, decimal tutar)
  13. {
  14.     // gonderdigin degerlere gore tutari borc'tan dusuyor ve sana islem ile ilgili bilgi geri donuyor.
  15.    
  16.     // islem basarili ise
  17.     return true;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement