DemoService/Models/Service.cs

43 lines
958 B
C#
Raw Normal View History

2024-09-09 11:45:33 +00:00
using Avalonia.Media.Imaging;
using System;
2024-09-05 13:11:39 +00:00
using System.Collections.Generic;
namespace DemoService.Models;
public partial class Service
{
public int Id { get; set; }
public string Title { get; set; } = null!;
public decimal Cost { get; set; }
public int DurationInSeconds { get; set; }
public string? Description { get; set; }
public decimal? Discount { get; set; }
public string? MainImagePath { get; set; }
2024-09-09 11:45:33 +00:00
public Bitmap? MainImagePathBitmap
{
get
{
2024-09-10 13:12:58 +00:00
try
{
return new Bitmap(AppDomain.CurrentDomain.BaseDirectory + "/" + MainImagePath);
}
catch
{
return null;
}
2024-09-09 11:45:33 +00:00
}
}
2024-09-05 13:11:39 +00:00
public virtual ICollection<Clientservice> ClientServices { get; set; } = new List<Clientservice>();
public virtual ICollection<Servicephoto> ServicePhotos { get; set; } = new List<Servicephoto>();
}