Less to migrate, less to maintain, and I'll never swap these out as components; might as well get the ease of managing them all in one project.
9 lines
286 B
Forth
9 lines
286 B
Forth
/// Logic for manipulating <see cref="User" /> entities
|
|
module MyWebLog.Logic.User
|
|
|
|
open MyWebLog.Data
|
|
|
|
/// Try to log on a user
|
|
let tryUserLogOn (data : IMyWebLogData) email passwordHash = data.LogOn email passwordHash
|
|
|
|
let setUserPassword (data : IMyWebLogData) = data.SetUserPassword |