Skip to content
Snippets Groups Projects
Commit ba5a4c3e authored by esantangelo's avatar esantangelo
Browse files

user types ids

parent 98bab670
No related branches found
No related tags found
No related merge requests found
Pipeline #10710 passed with stage
......@@ -95,24 +95,28 @@ namespace Tsi1.BusinessLayer.DataLoad
// USER TYPES
var udelarAdminUserType = new UserType
{
Id = 2,
Name = UserTypes.UdelarAdmin,
};
_context.Add(udelarAdminUserType);
var facultyAdminUserType = new UserType
{
Id = 1,
Name = UserTypes.FacultyAdmin,
};
_context.Add(facultyAdminUserType);
var professorUserType = new UserType
{
Id = 3,
Name = UserTypes.Professor,
};
_context.Add(professorUserType);
var studentUserType = new UserType
{
Id = 4,
Name = UserTypes.Student,
};
_context.Add(studentUserType);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment