public async Task <ActionResult> GetAdmAreaCommercialobjs(string admarea)
        {
            var presenter = new CommercialobjListPresenter();
            await _getCommercialobjListUseCase.Handle(GetCommercialobjListUseCaseRequest.CreateCommercialobjsRequest(admarea), presenter);

            return(presenter.ContentResult);
        }
        public async Task <ActionResult> GetCommercialobj(long commercialobjId)
        {
            var presenter = new CommercialobjListPresenter();
            await _getCommercialobjListUseCase.Handle(GetCommercialobjListUseCaseRequest.CreateCommercialobjRequest(commercialobjId), presenter);

            return(presenter.ContentResult);
        }