16 lines
389 B
C#
16 lines
389 B
C#
![]() |
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;
|
|||
|
}
|