Blagodat/Hardik/Conect/Dao/SelectDao.cs

16 lines
389 B
C#
Raw Normal View History

2025-04-25 11:37:47 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Demka_Snova_1.Hardik.Conect.Dao;
public class SelectedService
{
public string Id { get; set; }
public string Name { get; set; }
public int PrisePerH { get; set; }
public int Hours { get; set; }
public decimal Total => PrisePerH * Hours;
}