public async Task <PreAberturaOS> InserirPreAbertura(PreAberturaOS preAbertura)
        {
            await _context.PreAberturaOS.AddAsync(preAbertura);

            await _context.SaveChangesAsync();

            return(preAbertura);
        }
 public async Task <PreAberturaOS> InserirPreAbertura(PreAberturaOS preAbertura)
 {
     return(await _repositorio.InserirPreAbertura(preAbertura));
 }