2020-09-01 08:36:45 -07:00
|
|
|
#pragma warning disable CA2227
|
|
|
|
|
2019-06-01 13:40:01 -07:00
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
2020-08-30 15:50:54 -07:00
|
|
|
using Jellyfin.Data.Interfaces;
|
2019-06-01 13:40:01 -07:00
|
|
|
|
2020-08-29 10:30:09 -07:00
|
|
|
namespace Jellyfin.Data.Entities.Libraries
|
2019-06-01 13:40:01 -07:00
|
|
|
{
|
2020-08-30 15:50:54 -07:00
|
|
|
/// <summary>
|
|
|
|
/// An entity representing a company.
|
|
|
|
/// </summary>
|
|
|
|
public class Company : IHasCompanies, IHasConcurrencyToken
|
2020-05-02 14:56:05 -07:00
|
|
|
{
|
|
|
|
/// <summary>
|
2020-08-30 15:50:54 -07:00
|
|
|
/// Initializes a new instance of the <see cref="Company"/> class.
|
2020-05-02 14:56:05 -07:00
|
|
|
/// </summary>
|
2020-08-30 15:50:54 -07:00
|
|
|
/// <param name="owner">The owner of this company.</param>
|
|
|
|
public Company(IHasCompanies owner)
|
2020-05-02 14:56:05 -07:00
|
|
|
{
|
2020-08-30 15:50:54 -07:00
|
|
|
owner?.Companies.Add(this);
|
2020-05-02 14:56:05 -07:00
|
|
|
|
2020-08-30 15:50:54 -07:00
|
|
|
CompanyMetadata = new HashSet<CompanyMetadata>();
|
2020-05-02 14:56:05 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
2020-08-30 15:50:54 -07:00
|
|
|
/// Initializes a new instance of the <see cref="Company"/> class.
|
2020-05-02 14:56:05 -07:00
|
|
|
/// </summary>
|
2020-08-30 15:50:54 -07:00
|
|
|
/// <remarks>
|
|
|
|
/// Default constructor. Protected due to required properties, but present because EF needs it.
|
|
|
|
/// </remarks>
|
|
|
|
protected Company()
|
2020-05-02 14:56:05 -07:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
2020-08-30 15:50:54 -07:00
|
|
|
/// Gets or sets the id.
|
2020-05-02 14:56:05 -07:00
|
|
|
/// </summary>
|
2020-08-30 15:50:54 -07:00
|
|
|
/// <remarks>
|
|
|
|
/// Identity, Indexed, Required.
|
|
|
|
/// </remarks>
|
|
|
|
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
|
|
|
public int Id { get; protected set; }
|
2020-05-02 14:56:05 -07:00
|
|
|
|
2020-08-30 15:50:54 -07:00
|
|
|
/// <inheritdoc />
|
|
|
|
[ConcurrencyCheck]
|
|
|
|
public uint RowVersion { get; set; }
|
2020-05-02 14:56:05 -07:00
|
|
|
|
|
|
|
/// <summary>
|
2020-08-30 15:50:54 -07:00
|
|
|
/// Gets or sets a collection containing the metadata.
|
2020-05-02 14:56:05 -07:00
|
|
|
/// </summary>
|
2020-08-30 15:50:54 -07:00
|
|
|
public virtual ICollection<CompanyMetadata> CompanyMetadata { get; protected set; }
|
2020-05-02 14:56:05 -07:00
|
|
|
|
|
|
|
/// <summary>
|
2020-08-30 15:50:54 -07:00
|
|
|
/// Gets or sets a collection containing this company's child companies.
|
2020-05-02 14:56:05 -07:00
|
|
|
/// </summary>
|
2020-08-30 15:50:54 -07:00
|
|
|
public virtual ICollection<Company> ChildCompanies { get; protected set; }
|
2020-06-15 14:43:52 -07:00
|
|
|
|
2020-08-30 15:50:54 -07:00
|
|
|
/// <inheritdoc />
|
|
|
|
[NotMapped]
|
|
|
|
public ICollection<Company> Companies => ChildCompanies;
|
2020-05-02 14:56:05 -07:00
|
|
|
|
2020-08-30 15:50:54 -07:00
|
|
|
/// <inheritdoc />
|
2020-05-02 14:56:05 -07:00
|
|
|
public void OnSavingChanges()
|
|
|
|
{
|
|
|
|
RowVersion++;
|
|
|
|
}
|
|
|
|
}
|
2019-06-01 13:40:01 -07:00
|
|
|
}
|