presence/domain/Models/User.cs

57 lines
1.5 KiB
C#
Raw Permalink Normal View History

2024-11-01 14:11:27 +00:00
namespace Demo.Domain.Models
{
public class User
{
public required string FIO{get; set; }
public Guid Guid{get; set; }
public required Group Group{get; set; }
public static User Parse(string input)
{
string[] words = input.Split(" ");
if (words.Length < 4)
{
throw new FormatException("Input string does not have the expected number of elements.");
}
try
{
return new User
{
FIO = words[0],
Guid = Guid.Parse(words[1]),
Group = new Group
{
ID = Convert.ToInt32(words[2]),
Name = words[3]
}
};
}
catch (FormatException ex)
{
Console.WriteLine("Error parsing input: " + ex.Message);
throw;
}
}
}
public class UserRequest
{
public required string FIO{get; set; }
public required Group Group{get; set; }
}
public class DeleteUsersRequest
{
public List<Guid> UsersGuid { get; set; }
}
2024-11-11 11:49:39 +00:00
public class UserForPresence
{
public required string FIO {get; set;}
public required int lesson_number {get; set;}
public required DateOnly date {get; set;}
public required bool isAttendance {get; set;}
}
2024-11-01 14:11:27 +00:00
}