Add project files.

This commit is contained in:
samsys
2024-07-05 21:36:15 +03:30
parent 7d8d80b770
commit 75bc2360ea
6029 changed files with 1453374 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
using System.Collections.Generic;
using _0_Framework.Domain;
using CompanyManagment.App.Contracts.RollCallPlan;
namespace Company.Domain.RollCallPlanAgg;
public interface IRollCallPlanRepository : IRepository<long, RollCallPlan>
{
List<RollCallPlanViewModel> GetAll();
List<RollCallPlanViewModel> GetSelectedPlans();
RollCallPlanViewModel GetByMaxPersonValid(int maxPerson);
}

View File

@@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using _0_Framework.Domain;
namespace Company.Domain.RollCallPlanAgg;
public class RollCallPlan : EntityBaseWithoutCreationDate
{
public double FinalAmont { get; private set; }
public double IncreasePercentage { get; private set; }
public double BaseAmont { get; private set; }
public int MaxPersonValid { get; private set; }
}