Interfaces

This commit is contained in:
2017-03-08 15:47:46 +02:00
parent 9ede003205
commit fc14b4d3a5
20 changed files with 339 additions and 22 deletions

View File

@@ -6,11 +6,9 @@ using System.Threading.Tasks;
namespace Domain.Enums
{
class PersonType
public enum PersonType
{
public enum PersonTypeEnum {
Student,
Teacher
}
Student,
Teacher
}
}