-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPreferencesProvider.cs
152 lines (134 loc) · 4.39 KB
/
PreferencesProvider.cs
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
using System.Collections.Generic;
using ClassLibrary;
using NHibernate;
using NHibernate.Criterion;
namespace DataAccessLayer
{
public class PreferencesProvider : GenericDataProvider<Preference>
{
#region Constructors
/// <summary>
/// Initializes a new instance of the CourseDAL class.
/// </summary>
public PreferencesProvider()
{
}
/// <summary>
/// Initializes a new instance of the CourseDataAccessLayer class.
/// </summary>
public PreferencesProvider(ISession session)
: base(session)
{
}
#endregion
#region Public Methods
/// <exception cref="HibernateException"><c>HibernateException</c>.</exception>
public void AddPreference(Preference preference)
{
preference.Validate();
using (ITransaction tx = Session.BeginTransaction())
{
try
{
Session.Save(preference);
Session.Flush();
tx.Commit();
//return newID.Id;
}
catch (HibernateException)
{
tx.Rollback();
throw;
}
}
}
/// <exception cref="HibernateException"><c>HibernateException</c>.</exception>
public void DeletePreference(Preference preference)
{
using (ITransaction tx = Session.BeginTransaction())
{
try
{
Session.Delete(preference);
Session.Flush();
tx.Commit();
}
catch (HibernateException)
{
tx.Rollback();
throw;
}
}
}
public IList<Preference> GetAllPreferencesByProfId(int profId)
{
DetachedCriteria preferences = DetachedCriteria.For<Preference>()
.Add(Restrictions.Eq("Id.Professor.ProfId", profId))
.AddOrder(new Order("Weight", false));
IList<Preference> p = FindByDetachedCriteria(preferences);
return p;
}
public Preference GetPreferenceByProfIdAndCourseId(int profId, int courseId)
{
DetachedCriteria preference = DetachedCriteria.For<Preference>()
.Add(Restrictions.Eq("Id.Professor.ProfId", profId))
.Add(Restrictions.Eq("Id.Course.CourseId", courseId));
IList<Preference> p = FindByDetachedCriteria(preference);
if (p != null) return p[0];
return null;
}
/// <exception cref="HibernateException"><c>HibernateException</c>.</exception>
public void SaveOrUpdatePreference(IList<Preference> preference)
{
using (ITransaction tx = Session.BeginTransaction())
{
try
{
foreach (Preference p in preference)
{
Session.SaveOrUpdate(p);
}
Session.Flush();
tx.Commit();
}
catch (HibernateException)
{
tx.Rollback();
throw;
}
}
}
/// <exception cref="HibernateException"><c>HibernateException</c>.</exception>
public void UpdatePreference(Preference pref)
{
pref.Validate();
using (ITransaction tx = Session.BeginTransaction())
{
try
{
Session.Update(pref);
Session.Flush();
tx.Commit();
}
catch (HibernateException)
{
tx.Rollback();
throw;
}
}
//if (prof.UnassignedProf == true)
//{
// clearIsUnassignedProfessorsExceptThis(prof);
//}
}
#endregion
#region Properties
#endregion
public IList<Preference> GetAllPreferences()
{
DetachedCriteria allPreferences = DetachedCriteria.For<Preference>()
.AddOrder(new Order("Id", true));
return FindByDetachedCriteria(allPreferences);
}
}
}