NewCustomer.vb
- Public Class NewCustomer
- Dim ProgramName As String = My.Application.Info.AssemblyName
- Dim DataPath As String = System.Environment.CurrentDirectory & "\UAM"
- Dim ProductPath As String = DataPath & "\Products" '
- Dim ServicesPath As String = DataPath & "\Services"
- Dim CatPath As String = DataPath & "\Categories"
- Dim StoresPath As String = DataPath & "\Stores"
- Dim CustomersPath As String = DataPath & "\Customers"
- Dim CompanyPath As String = DataPath & "\Company"
- Dim MovmentPath As String = DataPath & "\Movment"
- Dim RequestsPath As String = DataPath & "\Requests"
- Dim SettingsPath As String = DataPath & "\Settings"
- Dim AlertsPath As String = DataPath & "\Alerts"
- Dim BoxPath As String = DataPath & "\Box"
- Dim MaxList As Integer = 0
- Dim FromList As Integer = 0
- Dim ToList As Integer = 0
- Private Shared NewCustomerInstance As NewCustomer
- Public Shared Function GetInstance() As NewCustomer
- If (NewCustomerInstance Is Nothing) Then
- NewCustomerInstance = New NewCustomer
- End If
- Return NewCustomerInstance
Hello,