public void Insertar(BancoDto dto)
 {
     try
     {
         var entity = new Banco();
         entity = DBancoConverter.ToEntity(dto);
         UnitOfWork.BancoRepository.Bancos.Add(entity);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
 public void Actualizar(SucursalDto dto)
 {
     try
     {
         foreach (var entity in UnitOfWork.SucursalRepository.Sucursales)
         {
             if (dto.Id == entity.Id)
             {
                 entity.Nombre        = dto.Nombre;
                 entity.Direccion     = dto.Direccion;
                 entity.FechaRegistro = dto.FechaRegistro;
                 entity.Banco         = DBancoConverter.ToEntity(dto.Banco);
             }
         }
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }