wrong way to multi multi db

This commit is contained in:
2017-03-08 14:38:36 +02:00
parent 74a391db4f
commit 9ede003205
6 changed files with 84 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Domain.Enums
{
class PersonType
{
public enum PersonTypeEnum {
Student,
Teacher
}
}
}