aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Data/Entities/BookMetadata.cs
blob: 9734cf20ec749cb301ebaf0accf369f106050ba7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
#pragma warning disable CS1591

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;

namespace Jellyfin.Data.Entities
{
    public partial class BookMetadata : Metadata
    {
        partial void Init();

        /// <summary>
        /// Default constructor. Protected due to required properties, but present because EF needs it.
        /// </summary>
        protected BookMetadata()
        {
            Publishers = new HashSet<Company>();

            Init();
        }

        /// <summary>
        /// Replaces default constructor, since it's protected. Caller assumes responsibility for setting all required values before saving.
        /// </summary>
        public static BookMetadata CreateBookMetadataUnsafe()
        {
            return new BookMetadata();
        }

        /// <summary>
        /// Public constructor with required data.
        /// </summary>
        /// <param name="title">The title or name of the object.</param>
        /// <param name="language">ISO-639-3 3-character language codes.</param>
        /// <param name="dateadded">The date the object was added.</param>
        /// <param name="datemodified">The date the object was last modified.</param>
        /// <param name="_book0"></param>
        public BookMetadata(string title, string language, DateTime dateadded, DateTime datemodified, Book _book0)
        {
            if (string.IsNullOrEmpty(title))
            {
                throw new ArgumentNullException(nameof(title));
            }

            this.Title = title;

            if (string.IsNullOrEmpty(language))
            {
                throw new ArgumentNullException(nameof(language));
            }

            this.Language = language;

            if (_book0 == null)
            {
                throw new ArgumentNullException(nameof(_book0));
            }

            _book0.BookMetadata.Add(this);

            this.Publishers = new HashSet<Company>();

            Init();
        }

        /// <summary>
        /// Static create function (for use in LINQ queries, etc.)
        /// </summary>
        /// <param name="title">The title or name of the object.</param>
        /// <param name="language">ISO-639-3 3-character language codes.</param>
        /// <param name="dateadded">The date the object was added.</param>
        /// <param name="datemodified">The date the object was last modified.</param>
        /// <param name="_book0"></param>
        public static BookMetadata Create(string title, string language, DateTime dateadded, DateTime datemodified, Book _book0)
        {
            return new BookMetadata(title, language, dateadded, datemodified, _book0);
        }

        /*************************************************************************
         * Properties
         *************************************************************************/

        /// <summary>
        /// Backing field for ISBN.
        /// </summary>
        protected long? _ISBN;
        /// <summary>
        /// When provided in a partial class, allows value of ISBN to be changed before setting.
        /// </summary>
        partial void SetISBN(long? oldValue, ref long? newValue);
        /// <summary>
        /// When provided in a partial class, allows value of ISBN to be changed before returning.
        /// </summary>
        partial void GetISBN(ref long? result);

        public long? ISBN
        {
            get
            {
                long? value = _ISBN;
                GetISBN(ref value);
                return _ISBN = value;
            }

            set
            {
                long? oldValue = _ISBN;
                SetISBN(oldValue, ref value);
                if (oldValue != value)
                {
                    _ISBN = value;
                }
            }
        }

        /*************************************************************************
         * Navigation properties
         *************************************************************************/

        [ForeignKey("Company_Publishers_Id")]
        public virtual ICollection<Company> Publishers { get; protected set; }
    }
}