PIAPS_CW/DatabaseImplement/Models/MediaFile.cs

62 lines
1.5 KiB
C#
Raw Normal View History

2024-06-20 22:32:22 +04:00
using Contracts.BindingModels;
using Contracts.ViewModels;
using DataModels.Models;
2024-06-11 12:18:10 +04:00
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DatabaseImplement.Models
{
public class MediaFile : IMediaFile
{
[Required]
public Guid Id { get; set; }
2024-06-11 12:18:10 +04:00
[Required]
public Guid ProductId { get; set; }
2024-06-25 20:26:34 +04:00
[Required]
public byte[] Image { get; set; }
public virtual Product Product { get; set; }
2024-06-20 22:32:22 +04:00
public static MediaFile? Create(MediaFileBindingModel? model)
{
if (model == null)
{
return null;
}
return new MediaFile
{
Id = model.Id,
2024-06-25 20:26:34 +04:00
Image = model.Image,
ProductId = model.ProductId,
};
}
2024-06-20 22:32:22 +04:00
public void Update(MediaFileBindingModel? model)
{
if (model == null)
{
return;
}
2024-06-25 20:26:34 +04:00
Image = model.Image;
}
2024-06-20 22:32:22 +04:00
public MediaFileViewModel GetViewModel
{
get
{
var context = new Database();
return new()
{
Id = Id,
2024-06-25 20:26:34 +04:00
Image = Image,
ProductId = ProductId,
ProductName = context.Products.FirstOrDefault(x => x.Id == ProductId)?.Name ?? string.Empty,
};
}
}
}
2024-06-11 12:18:10 +04:00
}