12 lines
		
	
	
		
			280 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			280 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using System;
 | 
						|
 | 
						|
namespace Kreta.Core.Domain.Interface
 | 
						|
{
 | 
						|
    public interface IKirAlkalmazott : IKirFelhasznalo
 | 
						|
    {
 | 
						|
        DateTime? AlkalmazasKezdete { get; set; }
 | 
						|
        DateTime? AlkalmazasMegszunese { get; set; }
 | 
						|
        string FoglalkoztatasTipusa { get; set; }
 | 
						|
    }
 | 
						|
}
 |