Skip to content

Instantly share code, notes, and snippets.

@Noerdsteil
Last active December 19, 2019 16:43
Show Gist options
  • Save Noerdsteil/7b4b64f62e6e7ff32ade89e0cbfac070 to your computer and use it in GitHub Desktop.
Save Noerdsteil/7b4b64f62e6e7ff32ade89e0cbfac070 to your computer and use it in GitHub Desktop.
import { IUserPropertyService, IUserService, IUserRoleService} from '../interfaces/services'
import UserService from './account/userService'
import UserPropertyService from './account/userPropertyService'
import UserRoleService from './account/userRoleService'
container.bind<IUserService>(DI_TYPES.UserService).to(UserService)
container.bind<IUserPropertyService>(DI_TYPES.UserPropertyService).to(UserPropertyService)
container.bind<IUserRoleService>(DI_TYPES.UserRoleService).to(UserRoleService)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment