24 lines
799 B
C#
24 lines
799 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using _0_Framework.Domain;
|
|
|
|
namespace Company.Domain.InstitutionPlanAgg;
|
|
|
|
public class InstitutionPlan : EntityBaseWithoutCreationDate
|
|
{
|
|
public InstitutionPlan(double finalContractAmont, double increasePercentage, double baseContractAmont, int countPerson)
|
|
{
|
|
FinalContractAmont = finalContractAmont;
|
|
IncreasePercentage = increasePercentage;
|
|
BaseContractAmont = baseContractAmont;
|
|
CountPerson = countPerson;
|
|
}
|
|
|
|
public double FinalContractAmont { get; private set; }
|
|
public double IncreasePercentage { get; private set; }
|
|
public double BaseContractAmont { get; private set; }
|
|
public int CountPerson { get; private set; }
|
|
} |