Image gallery has been resolved

This commit is contained in:
Qolzam
2017-11-11 11:02:37 +07:00
parent 7bbb1679ad
commit 9ffd6a1e40
23 changed files with 186 additions and 103 deletions

View File

@@ -10,7 +10,8 @@ import {
INotificationService,
IPostService,
IUserService,
IVoteService
IVoteService,
IStorageService
} from 'core/services'
//#endregion
@@ -27,7 +28,8 @@ import {
NotificationService,
PostService,
UserService,
VoteService
VoteService,
StorageService
} from 'data/firebaseClient/services'
//#endregion
@@ -115,4 +117,13 @@ export class ServiceProvide implements IServiceProvider {
return new VoteService()
}
/**
* Create instant for Vote Service
*
* @memberof ServiceProvide
*/
createStorageService: () => IStorageService = () => {
return new StorageService()
}
}