This is the typical declaration of an abstract member in F#:
abstract member createEmployee : string -> string -> Employee
You define the
What about:
abstract member createEmployee : firstName:string -> lastName:string -> Employee
?