public void Init()
 {
     using (var uow = new DatabaseContext(Config))
     {
         uow.DropSchema();
         uow.CreateSchema();
     }
 }