initial commit

This commit is contained in:
Siwat Sirichai 2025-06-08 16:22:20 +07:00
commit 252dac3143
1516 changed files with 694271 additions and 0 deletions

View file

@ -0,0 +1,33 @@

Imports Microsoft.VisualBasic
Imports BaseClasses.Utils.DbUtils
Namespace Persons.UI
Public Interface IHeader
#Region "Interface Properties"
ReadOnly Property Divider0() As System.Web.UI.WebControls.Image
ReadOnly Property Divider1() As System.Web.UI.WebControls.Image
ReadOnly Property Divider2() As System.Web.UI.WebControls.Image
ReadOnly Property LeftImage() As System.Web.UI.WebControls.Image
ReadOnly Property Logo() As System.Web.UI.WebControls.Image
ReadOnly Property RightImage() As System.Web.UI.WebControls.Image
ReadOnly Property SignIn() As System.Web.UI.WebControls.LinkButton
ReadOnly Property SignInBarPrintButton() As System.Web.UI.WebControls.Image
ReadOnly Property SIOImage() As System.Web.UI.WebControls.ImageButton
ReadOnly Property SkipNavigationLinks() As System.Web.UI.WebControls.HyperLink
ReadOnly Property UserStatusLbl() As System.Web.UI.WebControls.Label
Property Visible() as Boolean
#End Region
End Interface
End Namespace