public virtual async Task <ServiceExecutionResult> AddAsync(AbpHelperGenerateMigrationAddInput input)
        {
            await _addCommand.RunCommand(ObjectMapper.Map <AbpHelperGenerateMigrationAddInput, AddCommandOption>(input));

            return(new ServiceExecutionResult(true));
        }
 public Task <ServiceExecutionResult> AddAsync(AbpHelperGenerateMigrationAddInput input)
 {
     return(_service.AddAsync(input));
 }