public class structStaff

Public id as Integer         ' wewntrzny id czonka personelu
Public firstName As String   ' imi
Public lastName As String    ' nazwisko
Public email As String       ' adres email
Public password AS String    ' haso
Public isPM As integer       ' jest menederem projektu?

Public function toInsertString () as string

return(	"'" + ctype(firstname, string) +"', '" + _				
		  ctype(lastname, string) +"', '" + _
		  ctype(email, string) +"', '" + _
		  ctype(password, string) +"', " + _
		  ctype(ispm, string) )

end function


End Class
