Slide 40
Slide 40 text
パッケージ構成について
Web(フロントエンド)とServer(バックエンド)で分けています。
Serverは Classベースで Transaction, Service層などを用意
export class UserTransaction {
private userService: UserService
constructor(infra: Infra) {
this.userService = new UserService(userService)
}
async getUsers(): Promise {}
}
Transaction層
Service層