forked from slavaxom9k/PIBD-23_Fomichev_V.S._MagicCarpet
Проект и модели
This commit is contained in:
15
MagicCarpetProject/MagicCarpetDatabase/Models/Salary.cs
Normal file
15
MagicCarpetProject/MagicCarpetDatabase/Models/Salary.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace MagicCarpetDatabase.Models;
|
||||
|
||||
internal class Salary
|
||||
{
|
||||
public required string Id { get; set; } = Guid.NewGuid().ToString();
|
||||
public required string EmployeeId { get; set; }
|
||||
public DateTime SalaryDate { get; set; }
|
||||
public double EmployeeSalary { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user