Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. public class RaporOlusturma
  2. {
  3. /// <summary>
  4. /// Rapor oluşturmak için kullanılan metod
  5. /// </summary>
  6. /// <param name="em"></param>
  7. public void RaporOlustur(Employee em)
  8. {
  9. if (RaporTipi == "CRS")
  10. {
  11. // Crystal Report ile rapor oluştur
  12. }
  13. if (RaporTipi == "PDF")
  14. {
  15. // PDF formatında rapor oluştur
  16. }
  17. }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement