public async Task <int> Update(JobTranslation jobTranslation) { return(await Context.SaveChangesAsync()); }
public async Task <int> Insert(JobTranslation jobTranslation) { _jobTranslationRepository.Create(jobTranslation); return(await Context.SaveChangesAsync()); }