Advertisement
Guest User

Untitled

a guest
Jul 24th, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. using System;
  2.  
  3. namespace BusinessEntities
  4. {
  5. struct course
  6. {
  7. int courseID;
  8. string courseName;
  9. //int[] courseFee = new int[4];
  10. }
  11.  
  12. public class CCourse
  13. {
  14. #region Field
  15. private course _course;
  16. #endregion
  17.  
  18.  
  19. #region Property
  20. //public course MyProperty { get { return _course; } set { _course = value; } }
  21. #endregion
  22. }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement