Elég sok minden ...

This commit is contained in:
2025-03-19 14:38:04 +01:00
parent f74922d01e
commit 63b9beef35
19 changed files with 1652 additions and 6 deletions
@@ -0,0 +1,23 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WorkFlowCheck.DL.Entities
{
public class NumberGeneratorTemplateDate
{
public int Id { get; set; }
public int NumberGeneratorTemplateId { get; set; }
public virtual NumberGeneratorTemplate NumberGeneratorTemplate { get; set; }
public int Year { get; set; }
public int? Month { get; set; } // csak ha YearAndMonth
public int CurrentNumber { get; set; }
public string LastGeneratedNumber { get; set; }
}
}