SubscriptionConfigurationDto.cs 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. using MTWorkHR.Core.Entities.Base;
  2. using MTWorkHR.Core.Global;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.ComponentModel.DataAnnotations;
  6. using System.ComponentModel.DataAnnotations.Schema;
  7. using System.Linq;
  8. using System.Text;
  9. using System.Threading.Tasks;
  10. namespace MTWorkHR.Core.Entities
  11. {
  12. public class SubscriptionConfiguration : FullAuditEntity
  13. {
  14. //--------------------------forms for Companies------------------
  15. public decimal? FirstRegisterationCompanyFees { get; set; }
  16. public decimal? MonthlyCompanyFees { get; set; }
  17. public decimal? YearlyCompanyFees { get; set; }
  18. public decimal? MonthlyEmployeeServicesCompanyFees { get; set; }
  19. public decimal? DistinguishedEmployeeCompanyFeesPerc { get; set; }
  20. //--------------------------forms for Employee------------------
  21. public decimal? OrdinaryEmployeePerc { get; set; }
  22. public decimal? DistinguishedEmployeePerc { get; set; }
  23. public decimal? DeductedFirstSearchAmount { get; set; }
  24. public decimal? ContractDocumentationFees { get; set; }
  25. public decimal? ExperienceCertificateFees { get; set; }
  26. public decimal? RequestDisputeResolutionFees { get; set; }
  27. }
  28. }