Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. abstract class Rapor
  2. {
  3. public int RaporId { get; set; }
  4. public string RaporAdi { get; set; }
  5.  
  6. /// <summary>
  7. /// Method to generate report
  8. /// </summary>
  9. /// <param name="em"></param>
  10. public abstract void RaporOlustur(Employee em);
  11. // Override edilecek olan metodumuzdur. Bu metod farklı tipte raporlamalar için kullanılacaktır.
  12. }
  13.  
  14. class CrystalReportOlustur : Rapor
  15. {
  16. public override void RaporOlustur(Employee em)
  17. {
  18. // Crystal Report ile rapor oluştur
  19. }
  20. }
  21.  
  22. class PDFRaporOlustur : Rapor
  23. {
  24. public override void RaporOlustur(Employee em)
  25. {
  26. // PDF ile rapor oluştur
  27. }
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement