Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. namespace Solid.Srp
  2. {
  3. public class Employee
  4. {
  5. //Single responsibility principle
  6.  
  7. public int EmployeeId { get; set; }
  8. public string EmployeeName { get; set; }
  9. /// <summary>
  10. /// Employee Tablosuna kayıt. işlemi için kullanılan metod
  11. /// </summary>
  12. /// <param name="em">Employee Nesnesi</param>
  13. public bool InsertIntoEmployeeTable(Employee em)
  14. {
  15. // Employee Tablosuna kayıt.
  16. return true;
  17. }
  18. /// <summary>
  19. /// Rapor oluşturmak için kullanılan metod
  20. /// </summary>
  21. /// <param name="em"></param>
  22. public void RaporOlustur(Employee em)
  23. {
  24. // Crystal report kullanılarak rapor oluşturma.
  25. }
  26. }
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement