First create solution

This commit is contained in:
2017-03-08 11:21:27 +01:00
commit a2fb86bacf
5508 changed files with 1082238 additions and 0 deletions
@@ -0,0 +1,31 @@
Imports System
Imports System.ComponentModel
Imports DevExpress.Xpo
Imports DevExpress.Data.Filtering
Imports DevExpress.ExpressApp
Imports DevExpress.Persistent.Base
Imports DevExpress.Persistent.BaseImpl
Imports DevExpress.Persistent.Validation
Public Enum eQuestionStatus
eActive = 0 ' Új bejelentés
eReactivated = 6 ' Újranyitott
eProcessedAnswered = 1 ' Megválaszolt
eProcessedCustomerClosed = 2 ' Felhasználó lezárta
eProcessedDuplicate = 3 ' Duplikált probléma
eProcessedFixed = 4 ' Javított hiba
eProcessedInsufficientInformation = 5 'Nem elégséges információ
eInProgress = 8 'Folyamatban
eReviewed = 7 'Elolvasva
End Enum
Public Enum eQuestionClosed
eOpen = 0
eClosed = 1
End Enum
Public Enum eIssueType
eQuestion = 0
eBugReport = 1
eRequest = 2
End Enum