2023-03-26 19:25:49 +04:00
|
|
|
|
using CaseAccountingDataModels.Models;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace CaseAccountingContracts.BindingModels
|
|
|
|
|
{
|
|
|
|
|
public class ContractBindingModel : IContractModel
|
|
|
|
|
{
|
|
|
|
|
public string Service { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
public decimal Coast { get; set; }
|
|
|
|
|
|
|
|
|
|
public DateTime Date { get; set; } = DateTime.SpecifyKind(DateTime.Now, DateTimeKind.Utc);
|
|
|
|
|
|
2023-04-01 19:39:50 +04:00
|
|
|
|
public int UserId { get; set; }
|
|
|
|
|
|
2023-03-26 19:25:49 +04:00
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|