1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- using MTWorkHR.Core.Entities.Base;
- using MTWorkHR.Core.Global;
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.ComponentModel.DataAnnotations.Schema;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace MTWorkHR.Core.Entities
- {
- public class Contract : FullAuditEntity, IHaveCompany
- {
- public ContractTypeEnum ContractTypeId { get; set; }
- public ContractStatusEnum ContractStatusId { get; set; }
- public long CompanyId { get; set; }
- public string CompanyRepresentativeId { get; set; }
-
- public string UserId { get; set; }
-
- public int? JobId { get; set; }
- public int? AcademicQualificationId { get; set; }
- public int? SpecializationId { get; set; }
- public int WorkCountryId { get; set; }
- public int WorkStateId { get; set; }
- public int ContractorTaxResidencyId { get; set; }
-
- //-------------------Scope of work-----------
- public int? JobTitleId { get; set; }
- public string? JobDescription{ get; set; }
- [MaxLength(150)]
- public string? JobNumber { get; set; } //ثابت و مأخوذ من المنصة
- //----------------Contract data -------------------------
- public DateTime? StartDate { get; set; }
- public DateTime? EndDate { get; set; }
- public int ContractDurationId { get; set; } //: اختيار: شهري – ربعي – نصف سنوي – 3 ارباع – سنوي
- public TypeOfWork TypeOfWork { get; set; } //: : اختيار: عقد بدوام كامل - عقد دوام جزئي
- public int VacationDays { get; set; } //اختيار: بدون – سنويا (رقم)
- public int TrialPeriod { get; set; } // تجربة (ادخال: تلقائياً كل ربع سنوي أسبوع تلقائياً) آخر: تعديل
- public TerminateContractEnum WhoCanTerminateContractInTrial { get; set; } //اختيار الجميع – صاحب العمل – الموظف
- public TerminateContractEnum WhoCanTerminateContract { get; set; }
- public int NoticePeriodBeforeTermination { get; set; } //اختيار: بدون – تحديد (ادخال: تلقائياً مدة 10 أيام قبل انتهاء الاستحقاق) آخر: تعديل
- //------Working time---------------
- public string WorkingDays { get; set; } //: اختيار متعدد الأيام سبت أحد اثنين..... (بحيث الأيام الأخرى تكون إجازة) 1,2,3,4,5
- public WorkingHours WorkingHours { get; set; } // يومي/ اسبوعي
- public DateTime? StartDailyWorkingHours { get; set; } // تحديد ساعات الدوام قائمة الساعات << التوقيت بحسب دولة صاحب العمل
- public DateTime? EndDailyWorkingHours { get; set; } // تحديد ساعات الدوام قائمة الساعات << التوقيت بحسب دولة صاحب العمل
- //----------Salary-----------------
- [MaxLength(50)]
- public string? Currency { get; set; }
- public decimal? Salary{ get; set; }
- public BillingCycle BillingCycle { get; set; }// 2 fortnightly, 4 Monthly
- //---------Allowances----------------------
- public bool IncludesAllAllowances { get; set; }
- public List<ContractAllowance>? FixedAllowances { get; set; }
- //-------------------------------
- public List<ContractTask>? ContractTasks { get; set; }
- public List<ProjectStage>? ProjectStages { get; set; }
- // public decimal? GrossAnnualBaseSalary { get; set; }
- // public bool? AddSigningBonus { get; set; }
- // public bool? AddAnnualVariableCompensation { get; set; }
- //public bool FullTime { get; set; } = true; //full-time that will be 40 hours , part-time will be add it manually
- //public int EmployeeTypeHours { get; set; } = 40; //full-time that will be 40 hours , part-time will be add it manually
- //public int PaidVacationDays { get; set; }
- //public int SickDays { get; set; }
- //public bool EmploymentTerms { get; set; }
- }
- }
|