winforms users crud

This commit is contained in:
Dimitar Byalkov
2023-03-31 01:49:56 +02:00
parent 99e2b2a0cd
commit cd3a375b62
9 changed files with 530 additions and 2 deletions

View File

@@ -45,5 +45,9 @@ namespace StudentHouseDashboard.Models
get => role;
set => role = value;
}
public override string ToString()
{
return $"{ID}: {Name} ({Role})";
}
}
}