hamid

Results 2 issues of hamid

# General Question Read the [Notes](#notes) and fill out the form. Switch to `Preview` for reading. ## Notes Your issue will be closed if you violate any rule below. -...

question
API Block

```ts @injectable() @Controller('/') export class HomeController { @Get('/') public get(req:express.Request,res:express.Response) { let unitOfWork = new UnitOfWork(); unitOfWork.CustomersRepo.GetAll().then(result=>{ res.render('home', {customerList : result}); }).catch(function(err) { res.render('error', {error : {err}}); }); } }...