getCustomerById:asyncHandler<number>(async(req,res)=>{ const {id}=req.params; const result=await CUSTOMER_SERVICE.getCustomerById({id}) res.status(200).json({success:true, data:result}) }),