EmployeeContract.cs 356 B

1234567891011121314151617
  1. using DevExpress.XtraReports.UI;
  2. using System;
  3. using System.Collections;
  4. using System.ComponentModel;
  5. using System.Drawing;
  6. namespace MTWorkHR.Infrastructure.Reports
  7. {
  8. public partial class EmployeeContract : DevExpress.XtraReports.UI.XtraReport
  9. {
  10. public EmployeeContract()
  11. {
  12. InitializeComponent();
  13. }
  14. }
  15. }