public async Task <ICommandResult> Handle(ProvinceUpdateCommand mesage)
        {
            try
            {
                Province province = new Province();
                province.Init(mesage);
                await _locationService.ChangeToDb(province);

                ICommandResult result = new CommandResult()
                {
                    Message  = "",
                    ObjectId = province.Id,
                    Status   = CommandResult.StatusEnum.Sucess
                };
                return(result);
            }
            catch (Exception e)
            {
                e.Data["Param"] = mesage;
                ICommandResult result = new CommandResult()
                {
                    Message = e.Message,
                    Status  = CommandResult.StatusEnum.Fail
                };
                return(result);
            }
        }