11 lines
280 B
C#
11 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; }
|
|
}
|
|
}
|