20 lines
511 B
C#
20 lines
511 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace samusev_42
|
|
{
|
|
public partial class Product
|
|
{
|
|
[NotMapped]
|
|
public string CountUnit
|
|
{
|
|
/// Объединение колонок "Количечество и Штук", чтобы выглядело красиво
|
|
get { return Count + " " + Unit.ToString(); }
|
|
}
|
|
}
|
|
}
|