You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

48 lines
1.1 KiB

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using Sevomin.Models.Helpers;
namespace Sevomin.Models
{
public class Parameter
{
[Key]
public int Id { get; set; }
[Required]
public string Name { get; set; }
[Required]
public bool Moscow { get; set; }
[Required]
public byte DisplayMethod { get; set; }
[Required]
public string GroupName { get; set; }
[StringLength(140)]
public string CommentAvalin { get; set; }
[StringLength(140)]
public string CommentDovomin { get; set; }
[StringLength(50)]
public string ParameterValueId { get; set; }
[NotMapped]
public ICollection<ParameterValue> ParameterValues
{
get
{
return SevominDbContext.Current.ParameterValues.Where(x => x.GroupKey == ParameterValueId).ToList();
}
}
}
}